vote up 4 vote down star

Why linq is trying to check second expression anyway?

.Where(t =>  String.IsNullOrEmpty(someNullString) || t.SomeProperty >= Convert.ToDecimal(someNullstring))

What is usual workaround?

Update:
It is about LINQ to SQL, of course. It cannot translate to SQL.

flag

68% accept rate
Is this LINQ to SQL? – SLaks Jul 3 at 14:17
1  
I suddenly find the => and >= in this code very confusing. :-) (And I've used both quite often, but never together in the same statement.) – Workshop Alex Jul 3 at 14:22
yes. well, thanks, i got it:) – rudnev Jul 3 at 14:23
Are you sure it isn't working? I've tested it against a list (LINQ To Objects) and seems to work. – jmservera Jul 3 at 15:05
Read the question again. Of course it works but it also evaluates the second condition while using || should have prevented this... – Workshop Alex Jul 3 at 15:52

4 Answers

vote up 5 vote down check

Is the .Where being used on a Table<>?

If so, then before any data can be grabbed, it must convert the LINQ to SQL and to do that it must convert the string into a decimal. It's not trying to actually perform the comparisons yet, it's trying to build the constructs necessary to retrieve data.

link|flag
vote up 1 vote down

Do you have a variable t in any scope that may be evaluated?

Did you try with parenthesis like this:

.Where(t =>  (String.IsNullOrEmpty(someNullString) || 
             t.SomeProperty >= Convert.ToDecimal(someNullstring)))

?

link|flag
The => defines the scope of t. – toast Jul 4 at 2:42
vote up 1 vote down

I can't reproduce any problem with the short circuit evaluation...

I think this evaluates to something like:

[CompilerGenerated]
private static bool <MyMethod>b__f(MyObject t)
{
    return (String.IsNullOrEmpty(someNullString) 
                 || t.SomeProperty >= Convert.ToDecimal(someNullstring));
}

short circuit works well here.

I suspect other elements in your Enumerable evaluate the first condition (String.IsNullOrEmpty(someNullString)) to false. Can you confirm this?

Provide a bit more code so that we can analyze this.

link|flag
vote up 1 vote down

Does this help?

.Where(t =>  String.IsNullOrEmpty(someNullString) || (t.SomeProperty >= Convert.ToDecimal(someNullstring)))

Noticed the () around the second condition? I don't think it works but in general I prefer to put () around every condition in my code. That way, the compiler knows which parts belong together when it compiles the code, to prepare it for short-circuit evaluation...

link|flag

Your Answer

Get an OpenID
or

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