SQLServerCE默认连接工厂

发布于 2024-12-11 18:40:09 字数 519 浏览 0 评论 0原文

我正在使用 Entity Framework 4.1 并尝试连接到 MVC Web 应用程序内的新 SQLServerCE 4.0 数据库。 我正在使用这段代码

Database.DefaultConnectionFactory = new SqlCeConnectionFactory("System.Data.SqlServerCe.4.0", "|DataDirectory|", "test.sdf");

,它引发了这个异常:

初始化字符串格式不符合规范 从索引 86 开始。

这段代码有什么问题?

如果我使用

Database.DefaultConnectionFactory = new SqlCeConnectionFactory("System.Data.SqlServerCe.4.0")

它,它会工作并创建一个名称很长的数据库,该名称与我的程序集名称相匹配。

I am using Entity Framework 4.1 and try to connect to a new SQLServerCE 4.0 database inside an MVC Web application.
I am using this code

Database.DefaultConnectionFactory = new SqlCeConnectionFactory("System.Data.SqlServerCe.4.0", "|DataDirectory|", "test.sdf");

And it raises this exception :

Format of the initialization string does not conform to specification
starting at index 86.

What's wrong with this code?

If I use

Database.DefaultConnectionFactory = new SqlCeConnectionFactory("System.Data.SqlServerCe.4.0")

It works and creates a database with a very long name matching my assembly name.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芸娘子的小脾气 2024-12-18 18:40:09

有点晚了,但这应该有帮助:

new SqlCeConnectionFactory("System.Data.SqlServerCe.4.0", 
    "", @"Data Source=|DataDirectory|\test.sdf");

A little late, but this should help:

new SqlCeConnectionFactory("System.Data.SqlServerCe.4.0", 
    "", @"Data Source=|DataDirectory|\test.sdf");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文