How to seed data with AddOrUpdate with a complex key in EF 4.3

随声附和 提交于 2019-11-28 15:50:54

Try this:

context.People.AddOrUpdate(p => new { p.FirstName, p.LastName }, people);

If you got Only primitive types or enumeration types are supported in this context. because of using navigation property - consider adding foreign key property directly to the entity (maybe only with getter) and use it as Ladislav Mrnka proposed.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!