I have a class EntityCollection<CustomerEntity> in memory.
I want to see if any of these CustomerEntites are in the Database already. (Based on = "CustomerName")
The EntityCollection<CustomerEntity> is filled via a user entering data, it has never see a database.
I want to know if these Customers are already in the System using the LinqMetaData class.
Can I join or do an IN() ? (all in LINQ)
Ideas?