ASP.NET MVC一对多关系

时间:2018-07-08 18:15:40

标签: asp.net model-view-controller

我想问你如何与现有数据库建立这种代码关系?

public class FirmyValue : Entity
{
    public string Nazwa { get; set; }
    public string NIP { get; set; }
    public string Adres { get; set; }
}

internal class FirmyValueMappings : EntityTypeConfiguration<FirmyValue>
{
    public FirmyValueMappings()
    {
        Property(p => p.Nazwa).HasMaxLength(200);
        Property(p => p.NIP).HasMaxLength(200);
        Property(p => p.Adres).HasMaxLength(200);
    }
}

我需要与众多用户建立关系公司。你能解释一下吗?谢谢

0 个答案:

没有答案