我想问你如何与现有数据库建立这种代码关系?
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);
}
}
我需要与众多用户建立关系公司。你能解释一下吗?谢谢