Winforms - 程序无法从 app.config 中找到连接字符串

Posted

技术标签:

【中文标题】Winforms - 程序无法从 app.config 中找到连接字符串【英文标题】:Winforms - program cannot find connection string from app.config 【发布时间】:2015-05-05 17:10:34 【问题描述】:

我正在使用 VS 2013。我正在尝试将 SQL Server Compact 与 Entity Framework 6 一起使用。在 VS 2012 中创建数据库和 .EDMX 模型并在 VS 2013 中打开。我从 NuGet 安装了最新的 EF 和 EF SQL.CE。当我尝试运行时,出现以下错误

在应用程序配置文件中找不到名为“SomeDbFile”的连接字符串。

app.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <configSections>
        <section name="entityFramework" 
                 type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </configSections>
    <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlCeConnectionFactory, EntityFramework">
            <parameters>
                <parameter value="System.Data.SqlServerCe.4.0" />
            </parameters>
        </defaultConnectionFactory>
        <providers>
            <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
            <provider invariantName="System.Data.SqlServerCe.4.0" type="System.Data.Entity.SqlServerCompact.SqlCeProviderServices, EntityFramework.SqlServerCompact" />
        </providers>
    </entityFramework>
    <system.data>
        <DbProviderFactories>
            <remove invariant="System.Data.SqlServerCe.4.0" />
            <add name="Microsoft SQL Server Compact Data Provider 4.0" invariant="System.Data.SqlServerCe.4.0" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
        </DbProviderFactories>
    </system.data>
    <connectionStrings>
        <add name="SomeDbFile" 
             connectionString="metadata=res://*/EDataModel.csdl|res://*/EDataModel.ssdl|res://*/EDataModel.msl;provider=System.Data.SqlServerCe.4.0;provider connection string=&quot;data source=|DataDirectory|\dbfile.sdf&quot;" 
             providerName="System.Data.SqlServerCe.4.0" />
    </connectionStrings>
</configuration>

生成DbContext:

public partial class Entities : DbContext

    public Entities() : base("name=SomeDbFile")
    
    

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    
        throw new UnintentionalCodeFirstException();
    

    public DbSet<category> category  get; set; 
    public DbSet<item> item  get; set; 
    public DbSet<order> order  get; set; 
    public DbSet<order_line> order_line  get; set; 

【问题讨论】:

你有多个项目吗?这是在什么平台上运行的? WPF、Web 还是其他? @MattiVirkkunen 抱歉忘记提及我正在创建一个 winforms 应用程序。虽然我有 2 个单独的项目。一个是类库,另一个是windows form app。 你的连接设置是不是也放在了winforms app app.config中? @MattiVirkkunen 但我只在类库中使用 EF。 【参考方案1】:

您可能忘记将连接设置放在您的主应用程序(实际运行的东西)app.config 中。

类库项目中的app.config 文件在运行时什么都不做,而且通常是无用的。 (但某些 IDE 功能可能需要它们)

【讨论】:

击败我@Matti,这很可能是解决方案。 现在我收到了Keyword not supported: 'metadata'。错误。 @zazu:看起来它找到了连接字符串。请针对您的新的、不相关的错误创建另一个问题。 @MattiVirkkunen 在以metadata 开头的连接字符串中。我从 dll 项目中复制了整个配置,但没有帮助。请帮帮我,我已经浪费了半天的时间来解决这个问题。 @zazu:创建一个新问题来解释您的问题。您可以输入一个更具描述性的标题,您也会获得更多的知名度。【参考方案2】:

生成上下文时,它通常会将连接字符串设置为与上下文相同的名称,因此值得检查那里没有问题。这样,只要连接字符串名称正常,您就应该能够在客户端 web.config 中使用原始 EF 连接字符串。

或者你可以注释掉“throw new UnintentionalCodeFirstException();” OnModelCreating 中的行以使用正常的连接字符串。

        protected override void OnModelCreating(DbModelBuilder modelBuilder)
    
        //comment out this line to allow for a normal connection string 
        throw new UnintentionalCodeFirstException(); 
    

请检查这些链接以获取 EF 连接字符串

 https://msdn.microsoft.com/en-us/library/cc716756(v=vs.110).aspx  
https://msdn.microsoft.com/en-us/library/system.data.entityclient.entityconnectionstringbuilder.providerconnectionstring(v=vs.110).aspx
https://msdn.microsoft.com/en-us/library/system.data.entityclient.entityconnectionstringbuilder.providerconnectionstring(v=vs.110).aspx

尝试将连接字符串中的提供者名称更改为 providerName="System.Data.EntityClient"

【讨论】:

没有帮助,创建 dbcontext 的新实例时出现错误 启动项目的配置文件中需要有连接字符串。只需找出您的启动项目并将连接字符串复制到该启动项目的 web.config 文件即可。这样做后,您应该不会收到上述错误。 现在我收到Keyword not supported: 'metadata'. 错误。 您传递的字符串不是有效的数据库连接字符串,它是一个 EF 连接字符串,在其提供程序连接字符串参数中包含 SQL Server 连接字符串。 WebSecurity.InitializeDatabaseConnection 需要一个有效的数据库连接字符串为避免自己解析连接字符串,您可以使用 EntityConnectionStringBuilder 类解析字符串并从其 ProviderConnectionString 属性中检索数据库连接字符串只需参考我更新答案中的链接 解决了这个问题吗?如果我的回答有用请点赞或接受我的回答,如果没有用,您可以投票。

以上是关于Winforms - 程序无法从 app.config 中找到连接字符串的主要内容,如果未能解决你的问题,请参考以下文章

从 C# winforms 执行批处理文件忽略超时

无法添加用户控件“无法加载工具箱项”C#winforms

由于旧的程序集引用,无法在 VS2012 中加载 Winforms 设计器

如果我的 Winforms 应用程序的平台设置为 x86,SQLite 会无法运行吗?

检测 winforms 中的 gdi / 用户处理程序泄漏

如何从 Spotify 拖放到 Winforms 应用程序