You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
EntityFrameworkCore.Jet/test
Cédric Luthi 83c29e4c43 Introduce a new typed JetConnectionStringBuilder
This makes it easier to use than the extensions (EntityFrameworkCore.Jet.Data.DbConnectionStringBuilderExtensions) with Get/Set methods.

With the new `JetConnectionStringBuilder` class:

```csharp
var csb = new JetConnectionStringBuilder(DataAccessProviderType.OleDb)
{
    Provider = "Microsoft.ACE.OLEDB.12.0",
    DataSource = @"C:\myFolder\myAccessFile.accdb",
    DatabasePassword = "hunter2",
};
var connectionString = csb.ConnectionString;
```

Without the new `JetConnectionStringBuilder` class:

```csharp
var csb = new OleDbConnectionStringBuilder();
csb.SetProvider("Microsoft.ACE.OLEDB.12.0");
csb.SetDataSource(@"C:\myFolder\myAccessFile.accdb");
csb.SetDatabasePassword("hunter2");
var connectionString = csb.ConnectionString;
```
3 years ago
..
EFCore.Jet.Data.Tests Introduce a new typed JetConnectionStringBuilder 3 years ago
EFCore.Jet.FunctionalTests Add option to use the normal short text type when mapping against an unbounded System.String instead of long text/memo. Jet has limitations when using memo (e.g. joins are not supported) 3 years ago
EFCore.Jet.IntegrationTests Update tests 3 years ago
EFCore.Jet.Tests Enable nullable on src projects (not tests) 3 years ago
JetProviderExceptionTests Update to EF 7 GA version 3 years ago
Directory.Build.props Update to .Net 5 (#99) 4 years ago
Northwind.sql Update tests 3 years ago
xunit.runner.json Implement parallel support for ODBC and OLE DB. 6 years ago