我正在尝试使用Entity Framework创建一个通用函数来从DB获取数据.我传递了一个id作为检索的关键.为此,我编写了以下函数
public T Get<T>(object id) where T : class { T item = null; using (var context = MyContext()) { item = context.Set<T>().Find(id); } return item; }
解决方法
您可以传递谓词表达式并使用.FirstOrDefault().
public T Get<T>(Expression<Func<T,bool>> predicate) where T : class { T item = null; using (var context = MyContext()) { item = context.Set<T>().FirstOrDefault(predicate); } return item; } var customer = context.Get<Customer>(x => x.Name == "Bob");