Ejemplo n.º 1
0
 public static IStatementDelete Where(this IStatementDelete q, Func <WhereList, WhereList> f)
 {
     f.Invoke(q.Where);
     return(q);
 }
Ejemplo n.º 2
0
 public static IStatementDelete Where(this IStatementDelete q, params string[] equals)
 {
     q.Where.Equal(equals);
     return(q);
 }