我在 c# 中有以下代码。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Data;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using V2.PaidTimeOffDAL;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnView_Click(object sender, EventArgs e)
{
HRPaidTimeOffDataContext db = new HRPaidTimeOffDataContext();
var userAccounts =
from u in db.BMS_Users
select u;
GridView1.DataSource = userAccounts;
GridView1.DataBind();
}
}
每当我测试时,我都会收到以下错误“System.Data.Linq.DataContent 是在未引用的程序集中定义的。您必须添加对程序集的引用'System.Data.Linq Version=3.5.0.0' Culture=Neutral PublicKeyToken=############”。
每当我尝试使用 System.Data.Linq 添加指令时,我都会收到以下错误“命名空间‘System.Data’中不存在类型或命名空间名称‘Ling’”
我是 LINQ to SQL 的新手。请协助