I am trying to seed a development database with some test data.
I have used context.People.AddOrUpdate(p => p.Id, people));
with much success.
I have another table that I need to seed, in which I would not know the primary key.
For example, I would want to AddOrUpdate based on the First and Last names matching.
I am unsure how to write the Expression correctly.
context.People.AddOrUpdate(p => p.FirstName && p.LastName, people);
is obviously incorrect, but I hope it conveys the solution I am looking for.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…