public SqlAnywhere16Generator(
     [NotNull] SqlAnywhereQuoter quoter,
     [NotNull] IOptions <GeneratorOptions> generatorOptions)
     : this(new SqlAnywhereColumn(new SqlAnywhere16TypeMap()), quoter, new EmptyDescriptionGenerator(), generatorOptions)
 {
 }
Ejemplo n.º 2
0
 public SqlAnywhereColumn(ITypeMap typeMap, SqlAnywhereQuoter quoter)
     : base(typeMap, quoter)
 {
     // Add UNIQUE before IDENTITY and after PRIMARY KEY
     ClauseOrder.Insert(ClauseOrder.Count - 2, FormatUniqueConstraint);
 }
 public SqlAnywhere16Generator(
     [NotNull] SqlAnywhereQuoter quoter)
     : this(quoter, new OptionsWrapper <GeneratorOptions>(new GeneratorOptions()))
 {
 }