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.
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 | |
|---|---|---|
| .. | ||
| Properties | 5 years ago | |
| Resources | 5 years ago | |
| AssemblyInitialization.cs | 5 years ago | |
| ConnectionPoolingTest.cs | 5 years ago | |
| ConnectionStringTest.cs | 3 years ago | |
| CreateDatabaseTest.cs | 5 years ago | |
| CreateE2ETest.cs | 5 years ago | |
| CreateNorthwindTest.cs | 5 years ago | |
| DdlTest.cs | 5 years ago | |
| E2E.sql | 5 years ago | |
| EFCore.Jet.Data.Tests.csproj | 3 years ago | |
| ExistsTest.cs | 4 years ago | |
| Helpers.cs | 3 years ago | |
| InsertTest.cs | 5 years ago | |
| JetInformationSchemaTest.cs | 5 years ago | |
| SchemaOperationsTest.cs | 5 years ago | |
| TransactionTest.cs | 4 years ago | |
| UpdateTest.cs | 5 years ago | |