与 mdf 文件相关
我在 Linq to Sql 教程中找到了以下代码,Northwnd 类来自哪里?是自动生成的吗
Northwnd db = new Northwnd(@"c:\northwnd.mdf");
// Query for customers in London.
IQueryable<Customer> custQuery =
from cust in db.Customers
where cust.City == "London"
select cust;
I found the following code in a Linq to Sql tutorial, from where Northwnd class come from? Is it generated automatically
Northwnd db = new Northwnd(@"c:\northwnd.mdf");
// Query for customers in London.
IQueryable<Customer> custQuery =
from cust in db.Customers
where cust.City == "London"
select cust;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是使用 Visual Studio 中的向导通过向项目添加新的 Linq to Sql 元素来生成的。我会推荐您 以下博客文章。和 另一个。
It's generated using wizards in Visual Studio by adding a new Linq to Sql element to the project. I would recommend you the following blog post. And another one.