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?
I would split it into two steps — the construction of the query, then the assignment to the list. That way you can look at the generated SQL in the debugger and see if it is correct. I sometimes cut/paste (and fix up) into SSMS when I have a query problem to debug.