示例#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);
 }