Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 = ...
2
votes
1answer
128 views

Is necessary to compile linq queries in subsonic?

I'd like to know if it's necessary to compile linq queries to the subsonic entities? For example would I'd need to compile the following linq query? var comments = from a in All() ...
2
votes
1answer
243 views

Do Compiled Queries Cache?

Much of my application uses complied queries to retrieve data. In these queries I'll often refer to the current user. I'm noticing that if a user, B, logs in after another user, A, then user B will ...
1
vote
2answers
266 views

Executing queries in parallel throws “The underlying provider failed on open.” error

Sometimes, not always, I'm getting following error: "The underlying provider failed on open." This is my situation: I have a list of integer keys I process in parallel to be used as parameter in a ...
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
3answers
94 views

Does applying additional clauses to a compiled query cause a recompile?

If I have a compiled entities query via CompiledQuery.Compile and I then tack on another .Where() clause or .OrderBy() clause, do these addition clauses force a full recompile, a partial recompile, or ...
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
386 views

Filter list as a parameter in a compiled query

I have the following compiled query that I want to return a list of "groups" that don't have a "GroupID" that's contained in a filtered list: CompiledQuery.Compile(ConfigEntities contexty, ...
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
50 views

Compiled queries in Linq to Devart Entity Framework

For Compiled Queries, In LINQ to Object Entity FrameWork basically it allows the queries to compile at one time and then it can be re-used without compiling another time. For Example: using using ...
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. ...
0
votes
1answer
78 views

Compiled query in a static method used by biztalk

I am having a orchestration which will call a static method in a static class. I just discovered that if you need to run a Linq query a lot of times it is a good idea to make it into a compiled query. ...
0
votes
1answer
134 views

how to use a delegate to get by name a CompiledQuery

I'm trying to find and run a CompiledQuery given the name. How do I access the compiled query by name and how do I then invoke the delegate? Here's as far as I can get - I get the error 'Error ...