コード例 #1
0
ファイル: DbExtensions.cs プロジェクト: sam-clark/Recfluence
 public static string Sql(this ICommonDb db, TableId table) =>
 table.Schema.HasValue() ? $"{db.Sql(table.Schema)}.{db.Sql(table.Table)}" : $"{db.Sql(table.Table)}";
コード例 #2
0
ファイル: DbExtensions.cs プロジェクト: sam-clark/Recfluence
 public static string Sql(this ICommonDb db, ColumnSchema c) => db.Sql(c.ColumnName);