MSDN将其表示为低于
// Northwnd inherits from System.Data.Linq.DataContext.
Northwnd nw = new Northwnd(@"northwnd.mdf");
// or, if you are not using SQL Server Express
// Northwnd nw = new Northwnd("Database=Northwind;Server=server_name;Integrated Security=SSPI");
var companyNameQuery =
from cust in nw.Customers
where cust.City == "London"
select cust.CompanyName;
foreach (var customer in companyNameQuery)
{
Console.WriteLine(customer);
}
这里我的数据库名称是Madu,表格是学生名字,课程和地址。我的编码在
之下Madu md = new Madu("Database=Madu;Server=Madu-DV6080;Integrated Security=SSPI");
var courseQuery =from stu in md.Student where stu.Address == "London" select stu.Name;
foreach (var stu in courseQuery)
{
Console.WriteLine(stu);
}
我也添加了“System.Data.Linq”引用。但是它给我一个错误“找不到类型或命名空间名称'Madu'(你是否缺少using指令或程序集引用?)”
请帮帮我。 Thanx提前..!
答案 0 :(得分:0)
正如您在发布的代码中所说:
// Northwnd inherits from System.Data.Linq.DataContext.
所以你需要这个作为最低限度:
using System.Data.Linq;
namespace Foo
{
public class Mabu : DataContext
{
// Stuff
}
}
其中“Stuff”涉及设置上下文以匹配您正在使用的数据库。
This MSDN article说明了如何设置上下文。