如何确定对象集已经创建?
我正在使用实体框架和 mysql。我们创建了一个类
public class DataBaseContext : ObjectContext, IDbContext
有一个方法
public IEnumerable<T> Find<T>(Func<T, bool> whereClause) where T : class
{
return CreateObjectSet<T>().Where(whereClause);
}
有没有办法不用每次调用该方法时都创建ObjectSet?我可以检查它是否已经存在吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
呼呼。那是非常糟糕的方法。您正在传递
Func<>
,而不是Expression>
。这意味着每次执行 EF 方法时,都会从映射到T
的数据库表中提取所有记录,并在应用程序的内存中执行过滤 - 创建对象集是您最不应该担心的事情。无论如何,创建对象集不应该是昂贵的操作,并且如果您不想每次需要在对象上下文实例中实现一些“本地缓存”时都创建它。
Whooooo. That is so bad method. You are passing
Func<>
, notExpression<Func<>>
. It means that every time you execute your method EF will pull all records from database table mapped toT
and execute your filtering in memory of your application - creating object set is the last thing you should be afraid of.Anyway creating object set should not be expensive operation and if you don't want to create it every time you need to implement some "local caching" inside your object context instance.