Tagged Questions
0
votes
1answer
218 views
Entity Framework Bug: Exception with PredicateBuilder and comparing nulls
I was able to get my method (below) to run in LinqPad, but when switching to my actual code (using Entity Framework), I get this error:
"Unable to cast the type 'System.Nullable`1' to type ...
6
votes
1answer
442 views
Unable to refactor using LINQ to Entities and LinqKit / PredicateBuilder
I have been trying to refactor a LINQ expression into a method, and have been running into both the "Internal .NET Framework Data Provider error 1025." and "The parameter 'xyz' was not bound in the ...
2
votes
1answer
699 views
LinqKit PredicateBuilder with EF 4 CPT 5 table relationships?
I'm using LinqKit PredicateBuilder (http://www.albahari.com/nutshell/predicatebuilder.aspx) for a method that do searching. This is how the relationships are built (Entity Framework 4 CPT 5 POCO):
...