Skip to content

Commit 2e47826

Browse files
authored
change the min required version of oledb and odbc to 8.0.0 (#232)
1 parent 17e8819 commit 2e47826

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EFCore.Jet.Data/JetFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ namespace EntityFrameworkCore.Jet.Data
99
/// </summary>
1010
public class JetFactory : DbProviderFactory
1111
{
12-
public static readonly Version MinimumRequiredOdbcVersion = new Version(6, 0, 0);
13-
public static readonly Version MinimumRequiredOleDbVersion = new Version(6, 0, 0);
12+
public static readonly Version MinimumRequiredOdbcVersion = new Version(8, 0, 0);
13+
public static readonly Version MinimumRequiredOleDbVersion = new Version(8, 0, 0);
1414

1515
public static readonly JetFactory Instance = new JetFactory(null, null);
1616

0 commit comments

Comments
 (0)