Exemplo n.º 1
0
 private void DropColumnComment(MigrationCommandListBuilder builder, string schema, string table, string cloumn)
 {
     builder.Comment("sp_dropextendedproperty", schema, table, cloumn, string.Empty);
 }
Exemplo n.º 2
0
 private void UpdateTableComment(MigrationCommandListBuilder builder, string schema, string table, object desc)
 {
     builder.Comment("sp_updateextendedproperty", schema, table, string.Empty, desc);
 }
Exemplo n.º 3
0
 private void AddColumnComment(MigrationCommandListBuilder builder, string schema, string table, string cloumn, object desc)
 {
     builder.Comment("sp_addextendedproperty", schema, table, cloumn, desc);
 }