Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何以编程方式检查我的 .edmx 实体框架模型是否在 c# 中使用 DbContext 或 ObjectContext?
使用 DbContext 的不是您的 .edmx。如果您不使用默认生成器模板,则上下文由您选择的模板生成。
在运行时,您可以检查您的上下文对象是 DbContext 还是 ObjectContext
if(_ctx is DbContext) {...}