Example #1
0
 public T SelectOne(Expression <Func <T, bool> > where)
 {
     return(_dbSet.Where(where).Include(_dataContext.GetIncludePaths(typeof(T))).FirstOrDefault());
 }