vote up 1 vote down star

I have tried one where clause in Linq to get details about Users those who are Active and AllowLogin is also true.

So how can I compare the table values (both are boolean values) with true or false?

flag

2 Answers

vote up -1 vote down

thank you jon Skeet

link|flag
Please use Add Comment to respond to a specific answer, SO is not a Forum or a newsgroup – AnthonyWJones Jan 2 '09 at 8:26
@AnthonyWJones - not enough rep to add comments; you need 50 – Marc Gravell Jan 2 '09 at 9:45
vote up 7 vote down

Just use something like:

var query = from user in context.Users
            where user.Active && user.AllowLogin
            select user;

Alternatively, you can write the same query without a query expression:

var query = context.Users.Where(user => user.Active && user.AllowLogin);
link|flag
If all you want is the details (instead of the whole User), you can do a "select user.Detail" – Bramha Ghosh Jan 2 '09 at 8:08
Yes - but I assumed that when the OP said "details" he meant "all fields of the table" rather than a specific field called "details". – Jon Skeet Jan 2 '09 at 8:19
I took the freedom to format the question to match Jon's answer. – David Schmitt Jan 2 '09 at 9:38

Your Answer

Get an OpenID
or

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