To Reproduce
Steps to reproduce the behavior:
- Follow steps here
- Use the provider mappings here
<providerMappings>
<add databaseType="Microsoft.Practices.EnterpriseLibrary.Data.Sql.SqlDatabase, Microsoft.Practices.EnterpriseLibrary.Data.SqlServer" name="System.Data.SqlClient" />
</providerMappings>
- Run tests that
DbProviderFactories.RegisterFactory("System.Data.SqlClient", SqlClientFactory.Instance);
DatabaseProviderFactory factory = new DatabaseProviderFactory....
Database db = factory.Create(...
Actual behavior
Get runtime error 'Microsoft.Practices.EnterpriseLibrary.Data.Sql.SqlDatabase, Microsoft.Practices.EnterpriseLibrary.Data.SqlServer' cannot be resolved. This fails at factory.Create
From the overview page and from documentation at https://enterpriselibrary.github.io/daab/a00951.html, I assumed that I need EnterpriseLibrary.Data.SqlServer.NetCore but the link is broken. It does not look like any package similar to that name is on nuget.org
Expected behavior
To be able to install EnterpriseLibrary.Data.SqlServer.NetCore
Context (please complete the following information):
- OS: Windows
- NET core version 6.3.2 of EnterpriseLibrary.Data.NetCore, version 6.3.0 of EnterpriseLibrary.Common.NetCore
- DB: SQL Server
To Reproduce
Steps to reproduce the behavior:
DbProviderFactories.RegisterFactory("System.Data.SqlClient", SqlClientFactory.Instance);
DatabaseProviderFactory factory = new DatabaseProviderFactory....
Database db = factory.Create(...
Actual behavior
Get runtime error 'Microsoft.Practices.EnterpriseLibrary.Data.Sql.SqlDatabase, Microsoft.Practices.EnterpriseLibrary.Data.SqlServer' cannot be resolved. This fails at factory.Create
From the overview page and from documentation at https://enterpriselibrary.github.io/daab/a00951.html, I assumed that I need EnterpriseLibrary.Data.SqlServer.NetCore but the link is broken. It does not look like any package similar to that name is on nuget.org
Expected behavior
To be able to install EnterpriseLibrary.Data.SqlServer.NetCore
Context (please complete the following information):