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