示例#1
0
 public CuidSchemaManager(bool autoSave = true) : base(autoSave)
 {
     PreColumnAugmentations.Add(new AddColumnAugmentation {
         ColumnName = "Cuid", DataType = DataTypes.String, AllowNull = true
     });
 }
示例#2
0
 public AutoIdSchemaManager(bool autoSave = true, bool caps = false) : base(autoSave)
 {
     PreColumnAugmentations.Add(new AddIdKeyColumnAugmentation(caps));
 }