I am working on Entity Framework 4.1 and using data annotations for foreign keys. I want to know how can we define one to many relationship between product and categories. I want to map category. categoryId with product.cid

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; }
} 

Please suggest

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

Both these approaches should work:

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; }
}

Or:

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 is used to pair navigation property and foreign key property. It contains either the name of related navigation property or the name of related foreign key property.

link|improve this answer
@Ladislave Will it not be [ForeignKey("CategoryId")] inside Product ? – DotnetSparrow Mar 27 '11 at 12:38
No it will not. Check the last paragraph in my answer. – Ladislav Mrnka Mar 27 '11 at 12:56
feedback

You use entityconfigurations for this.

In the entityconfiguration, add this mapping to the category entityconfiguration:

HasMany<Product>(x => x.Products).WithRequired().HasForeignKey(x => x.CId);

You only need to map it on one of your classes and DbContext is clever enough to use it.

See this blog post for more info.

EDIT To do this using data annotations I believe the correct approach is as follows:

[RelatedTo(RelatedProperty="Products", Key="CId", RelatedKey="CategoryId")]
public virtual Category Category { get; set; }
link|improve this answer
@Gates: I want to do it using data annotations – DotnetSparrow Mar 27 '11 at 11:48
@Gates How can I do this using data annotaions instead of fluent API – DotnetSparrow Mar 27 '11 at 11:54
I think that's it. Haven't used annotations for this since CTP4 which is 1 version back, but I'm pretty sure that's right. – Gats Mar 27 '11 at 11:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.