public override TestStore GetOrCreate(string storeName)
 => NpgsqlTestStore.GetOrCreate(Name, "Northwind.sql");
コード例 #2
0
 public override TestStore GetOrCreate(string storeName)
 => NpgsqlTestStore.GetOrCreate(Name, "Northwind.sql",
                                TestEnvironment.PostgresVersion >= new Version(12, 0)
                 ? @"CREATE COLLATION IF NOT EXISTS ""some-case-insensitive-collation"" (LOCALE = 'en-u-ks-primary', PROVIDER = icu, DETERMINISTIC = False);"
                 : null);
 public virtual TestStore Create(string storeName)
 => NpgsqlTestStore.Create(storeName);
 public virtual TestStore GetOrCreate(string storeName)
 => NpgsqlTestStore.GetOrCreate(storeName);
コード例 #5
0
 public override TestStore GetOrCreate(string storeName)
 => NpgsqlTestStore.GetOrCreate(storeName);