We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d92561 commit 0fc762cCopy full SHA for 0fc762c
src/MySqlConnector/MySqlConnectorFactory.cs
@@ -14,6 +14,12 @@ public sealed class MySqlConnectorFactory : DbProviderFactory
14
#if !NETSTANDARD1_3
15
public override DbCommandBuilder CreateCommandBuilder() => new MySqlCommandBuilder();
16
public override DbDataAdapter CreateDataAdapter() => new MySqlDataAdapter();
17
+
18
+#if !NET45 && !NET461 && !NET471 && !NETSTANDARD2_0 && !NETCOREAPP2_1
19
+ public override bool CanCreateCommandBuilder => true;
20
+ public override bool CanCreateDataAdapter => true;
21
+ public override bool CanCreateDataSourceEnumerator => false;
22
+#endif
23
#endif
24
25
public MySqlBatch CreateBatch() => new MySqlBatch();
0 commit comments