Hi,
I am currently evaluating dotConnect as EF4 provider for Oracle.
I've written a simple app which uses EF4 CTP5 and maps POCOs code only. It works fine for MS SQL Server. Unfortunately, I can't get it to work with dotConnect.
I am getting [b]ProviderIncompatibleException was unhandled exception[/b] with [i]The provider did not return a ProviderManifestToken string.[/i] message.
Does dotConnect support code only POCOs at all?
Does dotConnect for Oracle support EF4 CTP5 code only POCOs?
We are in the process of testing the new CTP. However, we are unable to reproduce the particular problem you've reported about.
In case it is reproducible on the latest 6.0.58 build of dotConnect for Oracle, please send us (support * devart * com, subject "EF CTP 5 ProviderManifest") a small test project illustrating the issue (or provide detailed steps to reproduce the error).
In case it is reproducible on the latest 6.0.58 build of dotConnect for Oracle, please send us (support * devart * com, subject "EF CTP 5 ProviderManifest") a small test project illustrating the issue (or provide detailed steps to reproduce the error).
-
- Posts: 25
- Joined: Tue 14 Dec 2010 12:34
code first with EF CTP5
I get the following error with CTP5 and the Devart dotConnect for Oracle provider 6.0.58.0:
Schema specified is not valid. Errors:
error 0040: The Type varchar2 is not qualified with a namespace or alias. Only PrimitiveTypes can be used without qualification.
Any idea how I can solve that?
Schema specified is not valid. Errors:
error 0040: The Type varchar2 is not qualified with a namespace or alias. Only PrimitiveTypes can be used without qualification.
Any idea how I can solve that?
Try a workaround: add the following code in the OnModelCreating(ModelBuilder modelBuilder) method.
Code: Select all
modelBuilder.Conventions.Remove();
We have released a build with Entity Framework 4 CTP 5 support.
It can be downloaded from this page (Trial Edition) or from Registered Users' Area (non-Trial Editions).
It can be downloaded from this page (Trial Edition) or from Registered Users' Area (non-Trial Editions).