在基于web的“Get Started”页面中,使用SQL Server Express和此连接字符串(正确):
Data Source=.;Integrated Security=True;Initial Catalog=Orchard
数据库存在且为空。
我得到了这个错误:
Setup failed: An exception was thrown while invoking the constructor 'Void .ctor(Orchard.Environment.Configuration.ShellSettings, Orchard.Data.ISessionFactoryHolder)' on type 'SqlCeCommandInterpreter'.
我只是按照O‘’Reilly的书“Orchard CMS up and running”中的教程进行操作。
我该如何解决这个问题呢?
发布于 2013-06-27 07:51:51
您的数据源应该是.\SQLExpress
,因为这是您安装的默认实例
如果你想使用SQL express,你需要选择“使用现有的SQL Server,SQL Express数据库”。
您可以在http://www.connectionstrings.com/上查看该字符串的其他详细信息
发布于 2017-11-03 16:22:31
对我来说,原来我的连接字符串是不完整的。我真的没有抄袭整个过程
https://stackoverflow.com/questions/17317464
复制相似问题