Ejemplo n.º 1
0
 public virtual int UpdateWhatWhere(object what, object where)
 {
     return(DbUtil.UpdateWhatWhere <T>(what, where, Cs));
 }
Ejemplo n.º 2
0
 public int UpdatePassword(int id, string password)
 {
     return(DbUtil.UpdateWhatWhere <User>(new { password }, new { id }, Cs));
 }