我想将 SQL Server CE 数据库文件 ( .sdf
) 连接到 Web 应用程序。一旦我运行它,我就会收到以下错误。而且我不知道出了什么问题。
错误说
编译器错误消息:CS0234:命名空间“System.Data”中不存在类型或命名空间名称“SqlServerCe”(您是否缺少程序集引用?)
但是一旦我添加
using `System.Data.SqlServerCe;
IDE 中没有显示错误,但是一旦我编译它,我就会遇到错误。
using System;
using System.Collections.Generic;
using System.Data.SqlServerCe;
using System.Linq;
using System.Web;
public class LocalDbConfig
{
private string dbPath;
private SqlCeConnection con = null;
public LocalDbConfig()
{
dbPath = "Data Source=" + AppDomain.CurrentDomain.BaseDirectory + "\\App_Data\\Root.sdf";
con = new SqlCeConnection(dbPath);
}
}