Exemple #1
0
 public SQLiteGenerator(
     [NotNull] SQLiteQuoter quoter,
     [NotNull] IOptions <GeneratorOptions> generatorOptions)
     : base(new SQLiteColumn(), quoter, new EmptyDescriptionGenerator(), generatorOptions)
 {
     CompatibilityMode = generatorOptions.Value.CompatibilityMode ?? CompatibilityMode.STRICT;
 }
 public SQLiteGenerator(
     [NotNull] SQLiteQuoter quoter,
     [NotNull] IOptions <GeneratorOptions> generatorOptions)
     : base(new SQLiteColumn(), quoter, new EmptyDescriptionGenerator(), generatorOptions)
 {
 }
 public SQLiteGenerator(
     [NotNull] SQLiteQuoter quoter)
     : this(quoter, new OptionsWrapper <GeneratorOptions>(new GeneratorOptions()))
 {
 }
Exemple #4
0
 public SQLiteColumn(SQLiteQuoter quoter)
     : base(new SQLiteTypeMap(), quoter)
 {
 }