This repository was archived by the owner on Dec 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -32,18 +32,27 @@ a convenient API to persist related models. Effectively this allows you to creat
32
32
POCO type and it should persist as expected in a DB Table with columns for each of the classes 1st
33
33
level public properties.
34
34
35
- # Download
35
+ ## Download
36
36
37
- > Install-Package ServiceStack.OrmLite.PostgreSQL
37
+ Install the NuGet package for your RDBMS Provider, e.g:
38
38
39
- ### 8 flavours of OrmLite is on NuGet:
39
+ $ dotnet add package ServiceStack.OrmLite.PostgreSQL
40
40
41
+ Package Reference:
42
+
43
+ ``` xml
44
+ <PackageReference Include =" ServiceStack.OrmLite.SqlServer" Version =" 5.*" />
45
+ ```
46
+
47
+ ### OrmLite RDBMS Providers
48
+
49
+ - [ ServiceStack.OrmLite.PostgreSQL] ( http://nuget.org/List/Packages/ServiceStack.OrmLite.PostgreSQL )
41
50
- [ ServiceStack.OrmLite.SqlServer] ( http://nuget.org/List/Packages/ServiceStack.OrmLite.SqlServer )
42
51
- [ ServiceStack.OrmLite.SqlServer.Data] ( http://nuget.org/List/Packages/ServiceStack.OrmLite.SqlServer.Data ) (uses [ Microsoft.Data.SqlClient] ( https://devblogs.microsoft.com/dotnet/introducing-the-new-microsoftdatasqlclient/ ) )
43
52
- [ ServiceStack.OrmLite.Sqlite] ( http://nuget.org/packages/ServiceStack.OrmLite.Sqlite )
44
53
- [ ServiceStack.OrmLite.Sqlite.Data] ( http://nuget.org/packages/ServiceStack.OrmLite.Sqlite.Data ) (uses [ Microsoft.Data.SQLite] ( https://stackoverflow.com/a/52025556/85785 ) )
54
+ - [ ServiceStack.OrmLite.Sqlite.Cil] ( http://nuget.org/packages/ServiceStack.OrmLite.Sqlite.Cil )
45
55
- [ ServiceStack.OrmLite.Sqlite.Windows] ( http://nuget.org/packages/ServiceStack.OrmLite.Sqlite.Windows ) (Windows / .NET Framework only)
46
- - [ ServiceStack.OrmLite.PostgreSQL] ( http://nuget.org/List/Packages/ServiceStack.OrmLite.PostgreSQL )
47
56
- [ ServiceStack.OrmLite.MySql] ( http://nuget.org/List/Packages/ServiceStack.OrmLite.MySql )
48
57
- [ ServiceStack.OrmLite.MySqlConnector] ( http://nuget.org/List/Packages/ServiceStack.OrmLite.MySqlConnector ) (uses [ MySqlConnector] ( https://github.com/mysql-net/MySqlConnector ) )
49
58
You can’t perform that action at this time.
0 commit comments