Skip to content

Commit 5df30cf

Browse files
committed
Update Nuget version to 4.0.0
1 parent e58b1e1 commit 5df30cf

4 files changed

Lines changed: 5 additions & 32 deletions

File tree

Binary file not shown.

Appeon.DataStoreDemo.SqlServer/Properties/PublishProfiles/CustomProfile.pubxml

Lines changed: 0 additions & 27 deletions
This file was deleted.

Appeon.DataStoreDemo.SqlServer/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
}
1313
},
1414
"ConnectionStrings": {
15-
"AdventureWorks": "Data Source=127.0.0.1;Initial Catalog=AdventureWorks;Integrated Security=False;User ID=sa;Password=123456;Pooling=True;Min Pool Size=0;Max Pool Size=100;ApplicationIntent=ReadWrite"
15+
"AdventureWorks": "Data Source=127.0.0.1;Initial Catalog=AdventureWorks2012;Integrated Security=False;User ID=sa;Password=12345;Pooling=True;Min Pool Size=0;Max Pool Size=100;ApplicationIntent=ReadWrite;Trust Server Certificate=True"
1616
}
1717
}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# <b>.NET DataStore Example</b>
22

3-
This demo project targets .NET Core 3.1, and uses .NET DataStore to create the Web APIs that allow you to perform CRUD operations and transaction management with SQL Server. This demo also provides a PowerBuilder project that you can [download](https://github.com/Appeon/PowerBuilder-RestClient-Example) and use as a client application to call the Web APIs.
3+
This demo project targets .NET 6, and uses .NET DataStore to create the Web APIs that allow you to perform CRUD operations and transaction management with SQL Server. This demo also provides a PowerBuilder project that you can [download](https://github.com/Appeon/PowerBuilder-RestClient-Example) and use as a client application to call the Web APIs.
44
Note that this demo implements the Web APIs with synchronous methods. Asynchronous methods are planned for a future release.
55

66
#### Prerequisites
77

8-
- SnapDevelop 2021
9-
- PowerBuidler 2021
8+
- SnapDevelop 2022
9+
- PowerBuidler 2022
1010
- SQL Server 2019, 2017, or 2016
1111

1212
#### Setting Up This Demo
@@ -18,7 +18,7 @@ Note that this demo implements the Web APIs with synchronous methods. Asynchrono
1818
3. In the **Solution Explorer**, open the file *appsettings.json*, and modify the Data Source, Initial Catalog, User ID, and Password in the connection string based on your environment. Note that the value of the Initial Catalog must be the same as the name of database (AdventureWorks2012 by default) you restored in the SQL Server.
1919

2020
```json
21-
"ConnectionStrings": { "AdventureWorks": "Data Source=127.0.0.1; Initial Catalog=AdventureWorks2012; Integrated Security=False; User ID=sa; Password=123456; Pooling=True; Min Pool Size=0; Max Pool Size=100; ApplicationIntent=ReadWrite" }
21+
"ConnectionStrings": { "AdventureWorks": "Data Source=127.0.0.1; Initial Catalog=AdventureWorks2012; Integrated Security=False; User ID=sa; Password=123456; Pooling=True; Min Pool Size=0; Max Pool Size=100; ApplicationIntent=ReadWrite;Trust Server Certificate=True" }
2222
```
2323

2424
The code above also specifies the connection name as “AdventureWorks”. The connection name must be the same as the one in the ConfigureServices method of *Startup.cs*:

0 commit comments

Comments
 (0)