Tagged Questions

4
votes
1answer
1k views

Compiled queries and “Parameters cannot be sequences”

I thought that compiled queries would perform the same query translation as DataContext. Yet I'm getting a run-time error when I try to use a query with a .Contains method call. Where have I gone ...
3
votes
2answers
735 views

Linq-to-sql Compiled Query returns object NOT belonging to submitted DataContext?

Compiled query: public static class Machines { public static readonly Func<OperationalDataContext, short, Machine> QueryMachineById = ...
1
vote
2answers
523 views

DataContext compiled query problem with .NET 4

My project (UI layer is asp.mvc) was developed using .NET 3.5. After upgrading to .NET 4.0 I have got problem with compiled queries: [ArgumentException: Query was compiled for a different mapping ...
1
vote
2answers
411 views

LINQ-to-SQL “Member access not legal on type” exception with unioned and compiled query

I have multiple queries that I'd like to union together, then compile the entire thing. The uncompiled query runs fine, but an "InvalidOperationException: Member access 'Int32 Id' of 'UserQuery+Foo' ...
1
vote
1answer
287 views

Pipes and Filters and CompiledQuery.Compile

I have started using linq to sql and the entity framework and have found the development experience to be fairly good. Like the way you can break a query apart and combine different queries is quite ...
0
votes
1answer
53 views

In Linq to SQL how do you prevent Compiled queries from recompiling

I am using compiled queries. As expected they take extra time to compile for the first time however what I have also noticed is that they recompile after not being called for approximately 30 minutes. ...