Search found 3 matches

by LeeSalter
Wed 07 Oct 2009 08:27
Forum: Entity Framework support
Topic: ORA-01790
Replies: 40
Views: 18457

AndreyR wrote:I tried to reproduce the described problem using Lee's test project and failed.
However, the problem is reproducible using the previous build of dotConnect for Oracle or in case when
Devart.Data.Oracle.Entity.OracleEntityProviderServices.TypedNulls is set to true
(this code imitates the behaviour of previous builds).
I recommend you check that there are no cached assemblies with the old version in your system.
You can also check loaded modules in runtime (Debug->Modules).
Thanks for the update Andrey, I'll check those things out and get back to you.
by LeeSalter
Mon 05 Oct 2009 11:39
Forum: Entity Framework support
Topic: ORA-01790
Replies: 40
Views: 18457

AndreyR wrote:Could you please make a small test project illustrating the problem and send it to support * devart * com, subject "EF: Include"?
Please include the scripts of DB objects into the project.
Hi Andrey,

I've sent you a test project and db table creation scripts.
It may get quarentined at this end before it gets to you, please let me know if you haven't received it by this time tomorrow.

Kind regards,

Lee
by LeeSalter
Fri 02 Oct 2009 12:40
Forum: Entity Framework support
Topic: ORA-01790
Replies: 40
Views: 18457

ORA-01790

Please help.

I've just downloaded and installed the latest version of dotConnect for Oracle, thinking that it may fix an existing bug, but have now come across another bug.

My Entity object was working fine before but now I get an ORA-01790 error whenever I try to instantiate an Entity Object with more than two .Includes in.

The following code, which was working before, now fails:-

Code: Select all

 Nominal thisNom = (from n in context.Nominals.Include("RestorativeJustices").Include("Fips")
                                   .Include("CommonAssessmentFrameworks").Include("NominalDocuments")
                                   .Include("NominalDocuments.DocumentType")
                                   where n.NominalId == NominalId
                                   select n).FirstOrDefault();
If I remove some of the .Includes and leave two or less the code works. This is the same for any combination of .Include statements.

I'm in the middle of a critical project and need this sorting asap!!!