public static PostgresCollation GetOrAddCollation(
     this IMutableModel model,
     string?schema,
     string name,
     string lcCollate,
     string lcCtype,
     string?provider    = null,
     bool?deterministic = null)
 => PostgresCollation.GetOrAddCollation(
     model,
     schema,
     name,
     lcCollate,
     lcCtype,
     provider,
     deterministic);
示例#2
0
 public static PostgresCollation GetOrAddCollation(
     [NotNull] this IMutableModel model,
     [CanBeNull] string schema,
     [NotNull] string name,
     [CanBeNull] string lcCollate = null,
     [CanBeNull] string lcCtype   = null,
     [CanBeNull] string provider  = null,
     bool?deterministic           = null)
 => PostgresCollation.GetOrAddCollation(
     model,
     schema,
     name,
     lcCollate,
     lcCtype,
     provider,
     deterministic);