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.
是否可以创建一个模型,从DBContext哪些点继承到 SQL 中的现有视图?
DBContext
语法如何?
不要使用不再支持的 Linq To Sql。选择实体框架(代码优先,模型优先或数据库优先)更有趣和相关。
将新的实体数据模型添加到您的项目
定义连接字符串
查询你的看法
using (var dbcontext = new MyEntities()) { //var res = dbcontext.MyView.Where(...).ToList(); }