-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing feature detection properties to DbProviderFactory #28785
Labels
Milestone
Comments
Assigning to @roji on 3.0 milestone. |
divega
changed the title
Add missing feature detection methods to DbProviderFactory
Add missing feature detection properties to DbProviderFactory
Feb 25, 2019
roji
referenced
this issue
in roji/corefx
May 22, 2019
CanCreateDataAdapter, CanCreateCommandBuilder Closes #35564
roji
referenced
this issue
in roji/corefx
May 30, 2019
CanCreateDataAdapter, CanCreateCommandBuilder Closes #35564
roji
referenced
this issue
in dotnet/corefx
May 30, 2019
CanCreateDataAdapter, CanCreateCommandBuilder Closes #35564
roji
referenced
this issue
in roji/Npgsql
Jun 17, 2019
Pin dotnet sdk to 3.0.0-preview6 and implement new ADO.NET APIs introduced in .NET Core 3.0: * https://github.com/dotnet/corefx/issues/35564 * https://github.com/dotnet/corefx/issues/35012 Note: we cross-target netcoreapp3.0 since the new APIs aren't yet available in netstandard2.1, but this is expected to happen soon. Fixes npgsql#2481
roji
referenced
this issue
in roji/standard
Jun 26, 2019
CanCreateDataAdapter, CanCreateCommandBuilder See https://github.com/dotnet/corefx/issues/35564
roji
referenced
this issue
in roji/standard
Jun 27, 2019
CanCreateDataAdapter, CanCreateCommandBuilder See https://github.com/dotnet/corefx/issues/35564
roji
referenced
this issue
in dotnet/standard
Jun 28, 2019
CanCreateDataAdapter, CanCreateCommandBuilder See https://github.com/dotnet/corefx/issues/35564
roji
referenced
this issue
in npgsql/npgsql
Jul 7, 2019
Pin dotnet sdk to 3.0.0-preview6 and implement new ADO.NET APIs introduced in .NET Core 3.0: * https://github.com/dotnet/corefx/issues/35564 * https://github.com/dotnet/corefx/issues/35012 Note: we cross-target netcoreapp3.0 since the new APIs aren't yet available in netstandard2.1, but this is expected to happen soon. Fixes #2481
ghost
locked as resolved and limited conversation to collaborators
Dec 14, 2020
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Following up on #28768, we should add feature detection properties on DbProviderFactory for features which are optional, similar to the existing
CanCreateDataSourceEnumerator
. This would include:The default implementation would call the corresponding Create method and check if the result is null or not.
/cc @divega @ajcvickers @bricelam
The text was updated successfully, but these errors were encountered: