Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
616 views

Do we still need stored procedures when using compiled queries?

When using compiled queries in entity framework (or linq-to-sql) in combination with SQL Server, is there actually still any performance benefit in using stored procedures? Compiled queries will be ...
9
votes
5answers
440 views

When should I use a CompiledQuery?

I have a table: -- Tag ID | Name ----------- 1 | c# 2 | linq 3 | entity-framework I have a class that will have the following methods: IEnumerable<Tag> GetAll(); ...
7
votes
4answers
237 views

LINQ: When to use Compiled Queries?

I'd like some expert advice on this. I've used compiled queries before, but for this particular case, i'm not sure whether it's appropriate. It's a search form where the query changes and is ...
7
votes
5answers
154 views

How many times does a compiled query have to recompile during the lifecycle of an application?

In a website, if I have a class: public class Provider { static readonly Func<Entities, IEnumerable<Tag>> AllTags = CompiledQuery.Compile<Entities, ...
6
votes
2answers
178 views

including “offline” code in compiled querys

What happens behind the curtains when I include a function into my compiled query, like I do with DataConvert.ToThema() here to convert a table object into my custom business object: public static ...
4
votes
2answers
206 views

get generated sql from a compiled linq query

Is it possible to get the generated SQL from a compiled linq query?
4
votes
3answers
697 views

Compiled LINQ query & DataLoadOptions… with a twist!

I know about the method discussed here: Solving common problems with Compiled Queries in Linq to Sql for high demand ASP.NET websites ... but this doesn't work for my situation as i get a : ...
4
votes
2answers
1k views

LINQ-to-SQL Compiled Query Problem (works as uncompiled query)

I have C# extension methods on IQueryable, e.g. FindNewCustomers() and FindCustomersRegisteredAfter(int year) and so forth which I use to "chain" a query together for LINQ to SQL. Now to my problem: ...
3
votes
1answer
300 views

Switch statement in compiled query possible?

Is it at all possible to use something like a switch statement in a compiled query for linq to entities/sql? For example when returning sorted records from the database, I would like to use a ...
3
votes
3answers
468 views

Why doesn't this CompiledQuery give a performance improvement?

I am trying to speed up an often used query. Using a CompiledQuery seemed to be the answer. But when I tried the compiled version, there was no difference in performance between the compiled and ...
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 = ...
3
votes
1answer
359 views

Compiled query returns the same thing every time

I have this compiled query: private static Func<DBContext, Foo> FooQuery = CompiledQuery.Compile<DBContext, Foo>( _db => _db.FooTable.SingleOrDefault(f => f.DeletionDate == null ...
2
votes
2answers
50 views

Delete a record entity framework

I am receiving an exception: Unable to update the EntitySet 'Session' because it has a DefiningQuery and no element exists in the element to support the current operation. while trying to ...
2
votes
1answer
594 views

Entity Framework 4 simple Compiled Query internal exception on compilation

I want to retrieve one page from a sorted table. I want the sorting and paging to be done on the server. For this I created the following compiled query: internal static readonly Func<MyEntities, ...
2
votes
2answers
312 views

Linq To Sql: Compiled Queries and Extension Methods

I'm interessted, how does Linq2Sql handles a compiled query, that returns IQueryable. If I call an extension method based on a compiled query like "GetEntitiesCompiled().Count()" or ...
1
vote
1answer
92 views

Entity Framework Large Query - split into compiled subqueries?

I've got an ASP .NET web forms application that collects information to eventually give a calculated premium for a car insurance quote. I've got about 10 screens in which we populate our root CarRisk ...
1
vote
1answer
111 views

linq compiled query, class field

How can I insted of public var compiledQuery write Func < MYEntities,string, ???> public var compiledQuery = CompiledQuery.Compile((AddresEntities ctx, string name) => from x in ...
1
vote
1answer
143 views

using union on linq compiled queries

I'm trying to find the best way to use union with linq. currently I have to compiled queries with the same signature: public Func<DataContext, int, IQueryable<Item>> Query1 public ...
1
vote
1answer
63 views

What are the best practices for determining when (or not) to pre-compile a Linq Query?

I am currently refactoring a silverlight application and pulling out frequently used queries to a utility class. There are a lot of queries in the application, and while there were some obvious ...
1
vote
3answers
186 views

LINQ compiled query won't execute - ArgumentNulException was unhandled

I'm testing the Compiled Queries for the first time. My current query is: Shared compiledLatestDate As Func(Of RackJobbingDataDataContext, ArtikelInfoParameters, List(Of VerdelingPlanning)) = _ ...
1
vote
2answers
89 views

How do I refactor compiled LINQ queries?

Is it possible to refactor compiled LINQ to SQL queries? Suppose that I have a query with some logic, and I'd like to build onto it. Is it possible to reuse that query? For example, suppose I have a ...
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
216 views

Why can't you return a List from a Compiled Query?

I was speeding up my app by using compiled queries for queries which were getting hit over and over. I tried to implement it like this: Function Select(ByVal fk_id As Integer) As List(SomeEntity) ...
1
vote
2answers
1k views

Linq Compiled Queries and int[] as parameter

I'm using the following LINQ to SQL compiled query. private static Func<MyDataContext, int[], int> MainSearchQuery = CompiledQuery.Compile((MyDataContext db, int[] online ) => ...
1
vote
2answers
523 views

How to extract the Sql Command from a Complied Linq Query

In normal (not compiled) Linq to Sql queries you can extract the SQLCommand from the IQueryable via the following code: SqlCommand cmd = (SqlCommand)table.Context.GetCommand(query); Is it possible ...
1
vote
1answer
282 views

Use Inline Table Valued Function in LINQ Compiled Query

Is it possible to create a LINQ compiled query that utilizes an ITVF (inline table valued function)?
1
vote
2answers
725 views

Dynamic Order (SQL ORDERBY) in LINQ CompiledQuery

how can I create a dynamic ORDERBY in my LINQ CompiledQuery (e.g. supply Order Field and Direction as parameters for the compiled query)?
0
votes
1answer
27 views

Linq compiled query and performance issue

I am having some performance issue of linq compiled query. using (var txn = new TransactionScope(TransactionScopeOption.Required, new TransactionOptions { IsolationLevel = ...
0
votes
0answers
49 views

Linq2Sql “Member access not legal on type” exception

I have a static class with compiled queries and I want to reuse some of subqueries. So i extract a common part into a static property and then reference it in multiple queries: public static class ...
0
votes
0answers
40 views

EntityDataSource or Compiled Queries

I just want to know EntityDataSource (or LinqDataSource) compiles the query for me? if not, how can i do that thanks in advance
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
363 views

Linq to SQL Transaction Insert then Select really, really slow

I'm developing a piece of a system that basically migrates data from one set of tables to another set. Everything works fine, but I've decided to employ transactions instead of just failing on things ...
0
votes
1answer
32 views

Rewrite a LinqToSql query to return same instances without LoadWith

I'm investigating CompiledQuery performance, but CompiledQuery is allergic to LoadWith. using (CustomDataContext myDC = new CustomDataContext()) { DataLoadOptions options = new DataLoadOptions(); ...
0
votes
3answers
387 views

Linq-to-Entities match ID in list of integers in a compiled query

I'm trying to find a way to implement a Linq-to-Entities compiled query of the form: Func<MyEntities, List<int>, IQueryable<MyClass>> query = ...
0
votes
2answers
576 views

Entity Framework use CompiledQuery but allow runtime filter values

I'm attempting to refactor a cumbersome LINQ-to-SQL data layer with an entity framework one. The database schema behind the model is big and a typical query might have 20 to 30 Includes. The EF ...
0
votes
1answer
385 views

Help with linq to sql compiled query

I am trying to use compiled query for one of my linq to sql queries. This query contains 5 to 6 joins. I was able to create the compiled query but the issue I am facing is my query needs to check if ...
0
votes
1answer
218 views

When should I use CompiledQuery.Compile() when using entity framework?

I have read that here that CompiledQuery.Compile() helps to improve performance. So, I was looking in my application which uses to use it wherever I can. But I can't still wrap my head around how and ...
0
votes
1answer
330 views

Which methods to close a compiled query

As we know you can't add an extra clause like .Where() or .First() to a compiled query, because that changes the query and forces a recompile. What I would like to know is which methods can be used to ...
0
votes
0answers
539 views

Entity framework 4.0 compiled query with Where() clause issue

I encountered with some strange behavior of System.Data.Objects.CompiledQuery.Compile function - here is my code for compile simple query: private static readonly Func<DataContext, long, ...