public T_User Get(Expression <Func <T_User, bool> > exp)
 {
     return(_dal.GetEntity <T_User>(exp));
 }
Exemple #2
0
 /// <summary>
 /// 查询Entity(单个)
 /// </summary>
 public T GetEntity(Func <T, bool> exp)
 {
     return(dao.GetEntity(exp));
 }