SQLServerCE默认连接工厂
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有点晚了,但这应该有帮助:
A little late, but this should help: