I wrote this:
var destinations = db.DestinationDetails.
Where(dd => dd.Language.Lang == "en-US" &&
dd.Destination.Client.Any(c => c.Email == "abc@yahoo.com"));
How can I retrieve destinationDetails that client with email abc@yahoo.com doesn't have?
This doesn't work:
var destinations = db.DestinationDetails.
Where(dd => dd.Language.Lang == "en-US" &&
dd.Destination.Client.Any(c => c.Email != "abc@yahoo.com"));
Thanks!
