微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

我们有一个枚举供应商

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

所以在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怎么外键.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐