标签: entity-framework-4
鉴于POCO产品类:
public class Product { public int ProductId {get;set;} public string Name {get;set;} }
如何使用EF启用相关产品?
基本上,我需要允许产品所有者添加用户可能也感兴趣的产品。
我尝试在this question中修改答案,但无法让它发挥作用。
我认为我需要一个链接表,因为产品可能包含许多用户可能感兴趣的产品。
非常感谢提前
答案 0 :(得分:0)
好吧,我一定是早些时候做错了。我已经重新访问了this answer中的选项1,它完全符合我的需要。