0
votes
0answers
21 views

How to make LINQPad expression work with entityFramework

The following expression runs correctly in LINQPad. With the EntityFramework it runs but does not sort (no runtime errors just wrong results). Very simple table of: Scores - int 0 -300 Type - ...
3
votes
2answers
767 views

LINQPad Query Error

Problem: Can't properly setup LINQPad connection to my Entity Framework dll. I downloaded LINQPad (v4.42.01) I started to create a new connection using the Entity Framework DbContext POCO driver At ...
2
votes
2answers
347 views

Left Outer Join works in LINQPad (connected using EF 4.3) but fails in application

I have an application that successfully utilizes LINQ to perform LEFT OUTER JOINs several instances; however, in one case it fails to work as expected. Testing in LINQPad (using LINQ-to_SQL) ...
2
votes
1answer
180 views

Querying Ef context using LinqPad: Argument Exception

I have added Ef connection in linqpad like following As you can see connection is successfully added but when i want to query against this connection i get the following exception The specified named ...
2
votes
1answer
494 views

Performance Question between two Linq Queries in LinqPad and in Practice

I have a query: (from sr in ctx.STARS_Route where sr.STARS_RouteStopDestination.Any(i => i.IsWorkingSet == true && i.STARS_DistrictRoute.DistrictId == ...