是否可以在 CurrentDataSource 上设置 MergeOptions?
我在实体模型中公开了一些数据库视图,因为存在无法使用标准 OData 查询语法实现的复杂查询。我使用 WCF 数据服务将这些实体公开给第 3 方应用程序。基本上,有一些流程会更改 EF 层中的实体。我意识到表示数据库视图的实体不包含最实际的数据,因为它使用 EF 缓存并且没有从数据库加载数据。表示数据库表的实体始终是最新的。为了确保表示数据库视图的实体包含最实际的数据,据我所知,MergeOptions 必须设置为 NoTracking,然后 EF 在数据库中执行查询并忘记缓存的值。
现在我的问题。是否可以将服务操作中可用的 CurrentDataSource 与 MergeOptions 一起使用来强制 EF 忘记缓存的实体并每次在数据库中执行查询?或者是否有任何其他可能性如何定义 EF 查询不应使用缓存的实体值,而是执行 RAW SQL?
I expose some database views in my entity model because there are complex queries which can not be realized by using the standard OData query syntax. I use WCF Data Services for exposing these entities to the 3rd party applications. Basically, there are some flows which change my entities in the EF layer. I realized that the entity representing a database view does not contain the most actual data as it is using a EF cache and is not loading the data from the database. The entities representing database tables are always up-to-date. In order to make sure that an entity representing a databae view contains the most actual data, AFAIK a MergeOptions must be set to NoTracking, then the EF executes the query in the database and forgets about the cached values.
Now my question. Is it possible to use CurrentDataSource available in the service operations together with the MergeOptions to force EF to forget about the cached entities and execute the query everytime in the DB? Or are there any other possibilites for how to define that an EF query is not supposed to use cached entity values, but execute the RAW SQL instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论