Il mio progetto (livello UI è asp.mvc) è stato sviluppato utilizzando .NET 3.5. Dopo l'aggiornamento a .NET 4.0 ho avuto problemi con le query compilate:DataContext problema di query compilato con .NET 4
[ArgumentException: Query was compiled for a different mapping source than the one associated with the specified DataContext.]
System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) +863348
System.Data.Linq.CompiledQuery.Invoke(TArg0 arg0, TArg1 arg1) +110
Ogni volta quando corro la mia domanda sto passando mio contesto
return StaticQueries.getTopFiveOrders(mContext, int howMany);
public static Func<Mycontext, int, IQueryable<Order>> getTopFiveOrders
= CompiledQuery.Compile
((Mycontext mContext, int howMany) =>
(some query).Distinct());
L'errore si verifica sulla seconda richiesta.