如何从 Visual Studio with Linq 中的 WebMatrix-database 中进行选择

本文关键字:WebMatrix-database 行选 选择 中的 Linq Visual Studio with | 更新日期: 2023-09-27 18:35:04

我们如何在Visual Studio中使用Linq从SDF(webmatrix)数据库中选择数据,就像我们在Northwind中一样,像这样:?

// 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

感谢您的帮助。

如何从 Visual Studio with Linq 中的 WebMatrix-database 中进行选择

我不相信SQL Server CE 4.0正式支持Linq To SQL,尽管看起来你可以让它工作。Microsoft建议的方法是使用实体框架。

我已经写了几篇关于在WebMatrix中使用EF和SQL Server CE的文章。一个介绍代码优先方法,另一个介绍数据库优先方法。