Many outer/cross apply errors when Framework 4.5 is installed

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for Oracle
Post Reply
skoub
Posts: 32
Joined: Fri 21 May 2010 15:47

Many outer/cross apply errors when Framework 4.5 is installed

Post by skoub » Tue 13 Nov 2012 21:19

hi!

we have installed the Microsoft Framework 4.5 and since then, we have many outer apply or cross apply errors that we didnt had when we were on Framework 4.0.

Here's our project setup:
- Framework 4.0
- Entity Framework 4.3 CodeFirst
- DevArt v7.0.24 (and tried 7.2.114)

Before the Framework 4.5 installation, everything was fine. Every Linq Queries was working great. After the installation, even if the project was still on Framework 4.0 our linq queries began to generate some "outer apply" or "cross apply" errors.

here's an example of a cross apply error:

Code: Select all

var q = from depistage in this.appContext.DEPISTAGES                    
        where depistage.TypeDepistageId == 1 &&
              DateDebut <= depistage.DateDepistage &&
              DateFin >= depistage.DateDepistage &&
              depistage.AvisDepistages.FirstOrDefault().ResultatDepistageId == 1
        select depistage;

So my question is: why it was working before and now, with Framework 4.5 installed but not used in our solution, we get the outer/cross apply error so easly?

thank you for the help!

alex

skoub
Posts: 32
Joined: Fri 21 May 2010 15:47

Re: Many outer/cross apply errors when Framework 4.5 is installed

Post by skoub » Wed 14 Nov 2012 14:18

i've just found another post about the same problem. We will continue the discussion there: http://forums.devart.com/viewtopic.php?f=30&t=24769

Post Reply