次のように、northwindの場合と同じように、Linqを使用してVisual StudioのSDF(webmatrix)データベースからデータを選択する方法は次のとおりです。
// 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);
}
参照:http://msdn.microsoft.com/en-us/library/bb399398.aspx
よろしくお願いします。