gpt4 book ai didi

.net - Entity Framework 4.1中的外键

转载 作者:行者123 更新时间:2023-12-03 11:23:27 24 4
gpt4 key购买 nike

我正在研究Entity Framework 4.1,并为外键使用数据注释。我想知道如何定义产品和类别之间的一对多关系。我要映射类别。具有product.cid的categoryId

public class Category
{
public string CategoryId { get; set; }
public string Name { get; set; }

public virtual ICollection<Product> Products { get; set; }
}

public class Product
{
public int ProductId { get; set; }
public string Name { get; set; }
public string CId { get; set; }

public virtual Category Category { get; set; }
}

请建议

最佳答案

这两种方法都应该起作用:

public class Product
{
public int ProductId { get; set; }
public string Name { get; set; }
[ForeignKey("Category")]
public string CId { get; set; }

public virtual Category Category { get; set; }
}

要么:
public class Product
{
public int ProductId { get; set; }
public string Name { get; set; }
public string CId { get; set; }

[ForeignKey("CId")]
public virtual Category Category { get; set; }
}
ForeignKeyAttribute用于将导航属性和外键属性配对。它包含相关导航属性的名称或相关外键属性的名称。

关于.net - Entity Framework 4.1中的外键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5448979/

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