Creating a new EntityStoreSchemaGenerator raises a ProviderIncompatibleException
--------------------------------------------------------------------------------
Key: DNET-828
URL: http://tracker.firebirdsql.org/browse/DNET-828
Project: .NET Data provider
Issue Type: Bug
Components: ADO.NET Provider
Affects Versions: 6.0.0.0
Reporter: Leonard Wennekers
Assignee: Jiri Cincura
I added the problem at first as an EF6 problem, but perhaps ii's just and ADO.NET Provider problem.
Hopefully you can tell me if this is the right place to report. I would like to retrieve all tables/views and there columns without making all entities.
This was possible with the EntityStoreSchemaGenerator class.
The following function will now raise a ProviderIncompatibleException
while this was functioning with the 5.12 version
var mConnectionString = @"Data Source=localhost;Initial Catalog=\"C:\Data\Database\UnitTest.FDB\";User Id=SYSDBA;Password=masterkey;"
var storeGenerator = new EntityStoreSchemaGenerator("FirebirdSql.Data.FirebirdClient", mConnectionString, "namespace");
storeGenerator.GenerateStoreMetadata();
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|