View Lambdas in Visual Studio Debugger

Posted by Vaccano on Stack Overflow See other posts from Stack Overflow or by Vaccano
Published on 2010-03-16T21:01:40Z Indexed on 2010/03/16 21:11 UTC
Read the original article Hit count: 147

Filed under:
|
|
|
|

I have the a simple LinqToSQL statement that is not working. Something Like this:

List<MyClass> myList = _ctx.DBList
     .Where(x => x.AGuidID == paramID) 
     .Where(x => x.BBoolVal == false) 
     .ToList();

I look at _ctx.DBList in the debugger and the second item fits both parameters.

Is there a way I can dig into this more to see what is going wrong?

© Stack Overflow or respective owner

Related posts about LINQ

Related posts about linq-to-sql