コード例 #1
0
ファイル: EfBrandDal.cs プロジェクト: SanemsuBoz/ReCapProject
 public List <Brand> GetAll(Expression <Func <Brand, bool> > filter = null)
 {
     using (ReCapDemoDatabaseContext context = new ReCapDemoDatabaseContext())
     {
         return(filter == null?context.Set <Brand>().ToList() : context.Set <Brand>().Where(filter).ToList());
     }
 }
コード例 #2
0
ファイル: EfBrandDal.cs プロジェクト: SanemsuBoz/ReCapProject
 public Brand Get(Expression <Func <Brand, bool> > filter)
 {
     using (ReCapDemoDatabaseContext context = new ReCapDemoDatabaseContext())
     {
         return(context.Set <Brand>().SingleOrDefault(filter));
     }
 }