Skip to content

Commit c092efe

Browse files
committed
Update README.md
1 parent f2a2c98 commit c092efe

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ More info about Command-query separation http://martinfowler.com/bliki/CommandQu
2424
**Microsoft SQL Server®**
2525
```xml
2626
<configSections>
27-
<section name="daProvider" type="ADO.Query.Helper.DataAccessSectionHandler, ADO.Query" />
27+
<section name="daProviders" type="ADO.Query.Helper.DataAccessSectionHandler, ADO.Query" />
2828
</configSections>
2929

30-
<daProvider>
30+
<daProviders>
3131
<daProvider alias="MsSQL" type="ADO.Query.Helper.MsSql, ADO.Query" connectionStringName="DBConnection" />
32-
</daProvider>
32+
</daProviders>
3333

3434
<connectionStrings>
3535
<add name="DBConnection" connectionString="YOUR_CONNECTION_STRING" />
@@ -39,12 +39,12 @@ More info about Command-query separation http://martinfowler.com/bliki/CommandQu
3939
**MySQL®**
4040
```xml
4141
<configSections>
42-
<section name="daProvider" type="ADO.Query.Helper.DataAccessSectionHandler, ADO.Query" />
42+
<section name="daProviders" type="ADO.Query.Helper.DataAccessSectionHandler, ADO.Query" />
4343
</configSections>
4444

45-
<daProvider>
45+
<daProviders>
4646
<daProvider alias="MySQL" type="ADO.Query.Helper.MySql, ADO.Query" connectionStringName="DBConnection" />
47-
</daProvider>
47+
</daProviders>
4848

4949
<connectionStrings>
5050
<add name="DBConnection" connectionString="YOUR_CONNECTION_STRING" />
@@ -54,12 +54,12 @@ More info about Command-query separation http://martinfowler.com/bliki/CommandQu
5454
**PostgreSQL®**
5555
```xml
5656
<configSections>
57-
<section name="daProvider" type="ADO.Query.Helper.DataAccessSectionHandler, ADO.Query" />
57+
<section name="daProviders" type="ADO.Query.Helper.DataAccessSectionHandler, ADO.Query" />
5858
</configSections>
5959

60-
<daProvider>
60+
<daProviders>
6161
<daProvider alias="PgSQL" type="ADO.Query.Helper.PgSql, ADO.Query" connectionStringName="DBConnection" />
62-
</daProvider>
62+
</daProviders>
6363

6464
<connectionStrings>
6565
<add name="DBConnection" connectionString="YOUR_CONNECTION_STRING" />

0 commit comments

Comments
 (0)