Пример #1
0
 public static PostgresRange GetOrAddPostgresRange(
     [NotNull] this IMutableModel model,
     [CanBeNull] string schema,
     [NotNull] string name,
     [NotNull] string subtype,
     string canonicalFunction = null,
     string subtypeOpClass    = null,
     string collation         = null,
     string subtypeDiff       = null)
 => PostgresRange.GetOrAddPostgresRange(
     model,
     schema,
     name,
     subtype,
     canonicalFunction,
     subtypeOpClass,
     collation,
     subtypeDiff);
 public static IReadOnlyList <PostgresRange> GetOldPostgresRanges([NotNull] this AlterDatabaseOperation operation)
 => PostgresRange.GetPostgresRanges(operation.OldDatabase).ToArray();
Пример #3
0
 public static IReadOnlyList <PostgresRange> GetPostgresRanges(this AlterDatabaseOperation operation)
 => PostgresRange.GetPostgresRanges(operation).ToArray();