コード例 #1
0
 public static TableUpdateQuery <TElement> CreateUpdate <TElement>(this SqlTable table, TElement element)
 {
     return(new TableUpdateQuery <TElement>(element, table));
 }
コード例 #2
0
 public static TableInsertQuery <TElement> CreateInsert <TElement>(this SqlTable table)
 {
     return(new TableInsertQuery <TElement>(table));
 }
コード例 #3
0
 public static TableDeleteQuery <TElement> CreateDelete <TElement>(this SqlTable table, TElement element = default(TElement))
 {
     return(new TableDeleteQuery <TElement>(element, table));
 }