vote up 0 vote down star

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!

flag

2 Answers

vote up 1 vote down check

I think you want to use All instead of Any:

dd.Destination.Client.All(c => c.Email != "abc@yahoo.com")

link|flag
The other answer works too! – VansFannel Mar 21 at 9:12
@Vans y, its negating the expression :P - mine reads: all clients doesn't have this email, crhis's reads: there isn't any client that has this email - you can see why they are equivalent :) – Freddy Rios Mar 21 at 9:23
vote up 1 vote down

Try

var destinations = db.DestinationDetails.
    Where(dd => dd.Language.Lang == "en-US" &&
        !dd.Destination.Client.Any(c => c.Email == "abc@yahoo.com"));
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.