I'm trying to figure out how to do this, and I"m stumped. I'm sure it's something simple that I'm just missing.
Say I have a table that is a collection of names, and I want to check if a subset of those names exist like this:
var names = new List{ "John", "Steven", "Mary"};
var dbNames = from n in Db.Names
where n.FirstName == //names ???;
Is there anyway to do this?
Thanks!