c# – 在EF6中使用枚举作为FK

c# – 在EF6中使用枚举作为FK,第1张

概述我们有一个枚举供应商 但是现在我们还需要在这种关系上有一些域数据 所以在99.9%的域名代码中我们对enum的 *** 作就像product.Supplier == Suppliers.FedEx 但是现在我们还添加了product.SupplierInfo.CanAdjustPickupTime,其中SupplierInfo是一个实体而不仅仅是一个简单的枚举类型. 我试过这些配置 Property(p 我们有一个枚举供应商

但是现在我们还需要在这种关系上有一些域数据

所以在99.9%的域名代码中我们对enum的 *** 作就像product.supplier == suppliers.FedEx

但是现在我们还添加了product.supplierInfo.CanAdjustPickupTime,其中supplierInfo是一个实体而不仅仅是一个简单的枚举类型.

我试过这些配置

Property(p => p.supplier)    .Isrequired()    .HasColumnname("supplierID");Hasrequired(p => p.supplierInfo)    .WithMany()    .HasForeignKey(p => p.supplier); //I have also trIEd casting to int doing .HasForeignKey(p => (int)p.supplier)

这将失败

The ResultType of the specifIEd Expression is not compatible with the
required type. The Expression ResultType is
‘MyApp.Model.suppliers’ but the required type is
‘Edm.Int32’. Parameter name: keyvalues[0]

也试过了

Property(l => l.supplier)    .Isrequired()    .HasColumnname("supplierID");Hasrequired(p => p.supplierInfo)    .WithMany()    .Map(m => m.MapKey("supplierID"));

这样就可以给人留下好处

One or more valIDation errors were detected during model generation:

supplierID: name: Each property name in a type must be unique.
Property name ‘supplierID’ is already defined.

我可以将supplierID定义为使用HasForeignKey的Property属性然后我需要更改为.SupplIEdID ==(int)suppliers.FedEx等不是真正的解决方案.

我还可以添加一个使用supplierID属性作为支持字段的属性枚举,但这不适用于Expressions,因为它需要使用实际映射的数据库属性

有任何想法吗?

解决方法 我有课:

public class Agreement{    public int ID { get; set; }    public AgreementStateTypeEnum AgreementStateID { get; set; }}public class AgreementState{    public int ID { get; set; }    public string Title { get; set; }}

背景:

public class AgreementContext :DbContext {     public AgreementContext() : base("sqlConnection") { }     public DbSet<Agreement> Agreements { get; set; } }

在方法OnModelCreating我什么都没写.
我的枚举:

public enum AgreementStateTypeEnum : int {        InRevIEwing = 1,Confirmed = 2,Rejected = 3  }

在数据库中:在表中协议我有外键AgreementStateID – 它是表AgreementState的链接.
一切正常.例如:

var temp = context.Agreements.First(x => x.AgreementStateID == AgreementStateTypeEnum.Confirmed);

我用enum怎么外键.

总结

以上是内存溢出为你收集整理的c# – 在EF6中使用枚举作为FK全部内容,希望文章能够帮你解决c# – 在EF6中使用枚举作为FK所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1226542.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存