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.
是否可以在 Entity Framework 4.3.1 中使用 sql-view 加载数据?使用代码优先
[Table("my_View")]是的,如果您使用已定义视图的现有数据库,您可以简单地欺骗 EF,并通过使用实体类上的注释或.ToTable("my_View")流利映射中的方法让它假定视图实际上是一个表。
[Table("my_View")]
.ToTable("my_View")