Exemplo n.º 1
0
 public static PostgresRange GetOrAddPostgresRange(
     this IMutableModel model,
     string?schema,
     string name,
     string subtype,
     string?canonicalFunction = null,
     string?subtypeOpClass    = null,
     string?collation         = null,
     string?subtypeDiff       = null)
 => PostgresRange.GetOrAddPostgresRange(
     model,
     schema,
     name,
     subtype,
     canonicalFunction,
     subtypeOpClass,
     collation,
     subtypeDiff);
Exemplo n.º 2
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);