예제 #1
0
 public static IStatementUpdate Where(this IStatementUpdate q, Func <IWhereList, IWhereList> f)
 {
     f.Invoke(q.Where);
     return(q);
 }
예제 #2
0
 public static IStatementUpdate Sets(this IStatementUpdate q, params string[] values)
 {
     q.Sets.Append(values);
     return(q);
 }
예제 #3
0
 public static IStatementUpdate Sets(this IStatementUpdate q, Func <ISetList, ISetList> f)
 {
     f.Invoke(q.Sets);
     return(q);
 }
예제 #4
0
 public static IStatementUpdate Where(this IStatementUpdate q, params string [] equals)
 {
     q.Where.Equal(equals);
     return(q);
 }