我正在尝试在Firebird DB之上设置带有EF的项目,但是它正在生成Firebird数据库拒绝的额外报价。

数据库已经存在,并且那里有此查询的匹配记录。
错误是
FbException:动态SQL错误
SQL错误代码= -104
令牌未知-第2行,第4列


但是,如果删除引号,它将在sql中生成查询。



using (var context = new ContextManager())
{
     var accounts = context.Accounts.Where(x => x.OBJID == 1).ToList();
}


生成SQL

SELECT
"A"."OBJID" AS "OBJID"
FROM "ACCOUNT" AS "A"


配置文件

<?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" />
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  </configSections>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="FirebirdSql.Data.EntityFramework6.FbConnectionFactory, EntityFramework.Firebird" />
    <providers>
      <provider invariantName="FirebirdSql.Data.FirebirdClient" type="FirebirdSql.Data.EntityFramework6.FbProviderServices, EntityFramework.Firebird" />
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="FirebirdSql.Data.FirebirdClient" publicKeyToken="3750abcc3150b00c" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>

<system.data>
        <DbProviderFactories>
            <remove invariant="FirebirdSql.Data.FirebirdClient" />
            <add name="FirebirdClient Data Provider" invariant="FirebirdSql.Data.FirebirdClient" description=".NET Framework Data Provider for Firebird" type="FirebirdSql.Data.FirebirdClient.FirebirdClientFactory, FirebirdSql.Data.FirebirdClient" />
        </DbProviderFactories>
    </system.data></configuration>


上下文类

public class ContextManager : DbContext
    {
        public ContextManager() : base(new FbConnection("database=xxxx.fdb;DataSource=localhost;user=xxx;password=xxxxx"),true)
        {

        }

        public ContextManager(string connString) : base(new FbConnection(connString), true)
        {
            //this.Configuration.LazyLoadingEnabled = false;
        }

        protected override void OnModelCreating(DbModelBuilder modelBuilder)
        {
        }

        public DbSet<Account> Accounts { get; set; }
    }


帐户模型

[Table("ACCOUNT")]
    public class Account
        {
            [Key]
            public int OBJID { get; set; }
        }


更新-检查并看到设置了方言1,因此我更新了查询字符串来表示它,查询没有更改,但错误发生了
FbException:动态SQL错误
SQL错误代码= -104
令牌未知-第2行,第4列


c# -  Entity Framework 和Firebird DB方言1-无法生成兼容的SQL-LMLPHP

最佳答案

问题在于您的数据库是方言1,而Entity Framework引用了对象名称。遗憾的是,方言1不支持带引号的对象名称,而是将其解释为字符串。这会导致令牌未知错误,因为解析器不期望字符串,而是对象名称。

自从我对实体框架做过任何事情以来(我通常使用Java编程)已经有一段时间了,而且我不确定是否有禁用引号的选项。

根据Firebird Bug跟踪器中的此票证,Firebird Entity Framework支持不且将不支持方言1:DNET-580

因此,除非您将数据库升级到方言3,否则似乎将无法使用实体框架。请注意,从方言1升级到方言3可能并不简单,尤其是如果您的应用程序依赖于方言1的特定语法(例如,字符串的双引号)或行为(整数的浮点除法),则并非如此。

解决方法

可能的解决方法是将您的连接方言明确指定为方言3(Firebird ADO.net提供程序的连接属性Dialect=3)。这将允许您使用方言3语法查询数据库。请注意,行为可能有所不同,因为方言3具有许多不同的规则。

不过,我有些惊讶,因为我测试了Firebird ADO.net提供程序的许多最新版本,并且除非明确设置为1,否则它默认为方言3,因此这根本不是问题。

方言3的类似问题

答案的这一部分假设使用方言3数据库,该表实际上称为ACCOUNTS,而不是Accounts。这不会导致令牌未知,但会导致表未知错误。

在这种情况下,问题在于默认配置从对象派生名称,并且它将引用名称。方言3中的带引号的名称区分大小写(不带引号的名称不区分大小写,但以大写形式存储(并比较))。

您可以做的是通过注释对象来覆盖表名:

[Table("ACCOUNTS")]
public class Account
{
    [Key]
    public int OBJID { get; set; }
}


您可以使用的另一个选项是流畅的API,但我自己从未使用过它,因此我不确定要在何处指定它(我想在您的DbContext中)。

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
  //Changing Database table name to Metadata
  modelBuilder.Entity<Account>()
      .ToTable("ACCOUNTS");
}


可能还有其他选择可以影响命名约定。

另见Entity Framework Code First - Changing a Table Name

关于c# - Entity Framework 和Firebird DB方言1-无法生成兼容的SQL,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49540768/

10-09 00:25