vote up 0 vote down star

How do you map a table called category with Id as Primary Key which has self reference called ParenCategoryId using LinqToEntity?

flag

80% accept rate

1 Answer

vote up 0 vote down check

Create a FK that points from ID to ParentCategoryID. EF should pick up the navigation property from there. The name will be useless though so you will have to do some extra work (through a code generator or T4 template) to rename it to something more suiting like "ParentCategory".

link|flag

Your Answer

Get an OpenID
or

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