Пример #1
0
 private void DropColumnComment(MigrationCommandListBuilder builder, string schema, string table, string cloumn)
 {
     builder.Comment("sp_dropextendedproperty", schema, table, cloumn, string.Empty);
 }
Пример #2
0
 private void UpdateTableComment(MigrationCommandListBuilder builder, string schema, string table, object desc)
 {
     builder.Comment("sp_updateextendedproperty", schema, table, string.Empty, desc);
 }
Пример #3
0
 private void AddColumnComment(MigrationCommandListBuilder builder, string schema, string table, string cloumn, object desc)
 {
     builder.Comment("sp_addextendedproperty", schema, table, cloumn, desc);
 }