gpt4 book ai didi

c# - Entity Framework 代码优先和 Firebird - 外键名称问题

转载 作者:搜寻专家 更新时间:2023-10-30 21:43:48 26 4
gpt4 key购买 nike

我正在尝试使用 EF 代码优先和这个简单的代码创建包含 2 个表(DistrictsDatabases)的新数据库:

using (var db = new FirebirdDBContext(_connectionString))
{
db.Database.CreateIfNotExists();
}

我的类(class):

public class District
{
[Key]
public int District_id { get; set; }

[Column(TypeName = "VARCHAR")]
[StringLength(50)]
public string District_name { get; set; }

[ForeignKey("DataBase")]
public int DataBase_id { get; set; }

public DataBase DataBase { get; set; }
}

public class DataBase
{
[Key]
public int DataBase_id { get; set; }

[Column(TypeName = "VARCHAR")]
[StringLength(50)]
public string DataBase_name { get; set; }

public ICollection<District> District { get; set; }

public DataBase()
{
District = new List<District>();
}
}

但不幸的是它抛出了一个错误:

Specified argument was out of the range of valid values.
Parameter name: The name 'FK_Districts_DataBases_DataBase_id' is longer than Firebird's 31 characters limit for object names.

我知道 Firebird 的 31 个字符限制,但如果我先使用 Entity Framework 代码,我该如何解决这个问题?

最佳答案

增加 Firebird 对元数据字段名称的 31 个字符限制一直是一个不变的功能请求,并且没有增加长度限制的真正方法。

话虽如此,我们也许能够控制 EF 试图生成的外键约束名称的长度。这将涉及将您的类属性重命名为较短的名称(但仍将它们映射到它们的真实列名字)

希望 EF 根据类的属性名称而不是实际的列生成外键约束名称。

FK_Districts_DataBases_DataBase_id 是 23 + 11 = 34 个字符。我们需要让它少于 32 个字符..

我认为这个前缀可能是不可避免的。 FK_Districts_DataBases_所以我们有 7-8 个字符后缀的余地。

试试这个:

public class District
{
[Key]
public int District_id { get; set; }

[Column(TypeName = "VARCHAR")]
[StringLength(50)]
public string District_name { get; set; }

[ForeignKey("DataBase")]
[Column("DataBase_id")]
public int DbId { get; set; } // reduce the column name

public DataBase DataBase { get; set; }
}

public class DataBase
{
[Key]
[Column("DataBase_id")]
public int DbId { get; set; } // reduce the column name

[Column(TypeName = "VARCHAR")]
[StringLength(50)]
public string DataBase_name { get; set; }

public ICollection<District> District { get; set; }

public DataBase()
{
District = new List<District>();
}
}

希望 EF 将约束名称设为“FK_Districts_DataBases_DbId”(27 个字符)

关于c# - Entity Framework 代码优先和 Firebird - 外键名称问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35789394/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com