Asp.Net 默认 aspnetdb.mdf
当您创建具有成员资格的新 ASP.NET 项目时,它会为 ApplicationServices
创建默认连接字符串,如下所示:
<add name="ApplicationServices"
connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
providerName="System.Data.SqlClient" />
有没有办法强制它使用 App_Data
文件夹中的 SqlServerCe而不是在 sqlexpress 中创建它?
When you create a new ASP.NET project with membership it creates the default connection string for ApplicationServices
as follows:
<add name="ApplicationServices"
connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
providerName="System.Data.SqlClient" />
Is there a way to force this to use SqlServerCe in the App_Data
folder instead of creating it in sql express?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这是不可能的,但您可以通过数据源代码检查它。
no its not possible, but you can check it via code for data source..