Asp.Net 默认 aspnetdb.mdf

发布于 2024-11-27 03:44:40 字数 411 浏览 0 评论 0原文

当您创建具有成员资格的新 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 技术交流群。

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

发布评论

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

评论(1

司马昭之心 2024-12-04 03:44:43

不,这是不可能的,但您可以通过数据源代码检查它。

no its not possible, but you can check it via code for data source..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文