Shaolinq.Postgres
1.9.5
See the version list below for details.
dotnet add package Shaolinq.Postgres --version 1.9.5
NuGet\Install-Package Shaolinq.Postgres -Version 1.9.5
<PackageReference Include="Shaolinq.Postgres" Version="1.9.5" />
<PackageVersion Include="Shaolinq.Postgres" Version="1.9.5" />
<PackageReference Include="Shaolinq.Postgres" />
paket add Shaolinq.Postgres --version 1.9.5
#r "nuget: Shaolinq.Postgres, 1.9.5"
#:package Shaolinq.Postgres@1.9.5
#addin nuget:?package=Shaolinq.Postgres&version=1.9.5
#tool nuget:?package=Shaolinq.Postgres&version=1.9.5
Shaolinq is a thoughtfully designed ORM and Linq provider for .NET
Use this package to add Shaolinq and out-of-the-box Postgres support (via Npgsql).
Designed to perform super fast and be easy to use, Shaolinq's features also include:
- First class schema-first ORM with WYSIWYG data access and minipulation.
- First class LINQ support (not the basic kind you see in most other OSS projects).
- Single trip updating of objects.
- Support for Sqlite, MySql and Postgres.
- Automatic database creation and schema migration.
- Delete LINQ extension for batch server side deletes.
- Full support for server side date functions (Date.DayOfWeek etc).
- Easily extensible with a simple interface for adding support for other ADO.NET compatible databases.
- Open Source!
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.9.5.1477-refs-pull-109-merge | 1,034 | 10/1/2020 |
| 1.9.5.1476-refs-pull-109-head | 951 | 10/1/2020 |
| 1.9.5.1475-refs-pull-100-merge | 962 | 9/30/2020 |
| 1.9.5.1474-refs-pull-104-merge | 977 | 9/30/2020 |
| 1.9.5.1471-refs-pull-108-merge | 946 | 9/30/2020 |
| 1.9.5.1470-refs-pull-108-merge | 1,025 | 9/30/2020 |
| 1.9.5.1469-refs-pull-108-head | 1,006 | 9/30/2020 |
| 1.9.5.1468-refs-pull-107-merge | 1,015 | 9/30/2020 |
| 1.9.5.1467-refs-pull-107-head | 996 | 9/30/2020 |
| 1.9.5.1466-refs-pull-106-merge | 988 | 9/30/2020 |
| 1.9.5.1465-refs-pull-106-head | 1,044 | 9/30/2020 |
| 1.9.5.1464-refs-pull-105-merge | 1,020 | 9/30/2020 |
| 1.9.5.1462-refs-pull-104-merge | 1,068 | 9/30/2020 |
| 1.9.5.1460-refs-pull-100-merge | 1,011 | 4/1/2020 |
| 1.9.5 | 1,676 | 1/17/2020 |
| 1.9.4.1454-refs-pull-97-merge | 1,149 | 9/18/2019 |
| 1.9.4.1453-refs-pull-97-head | 1,062 | 9/18/2019 |
| 1.9.4.1452-refs-pull-96-merge | 1,043 | 9/18/2019 |
| 1.9.4.1451-refs-pull-96-head | 1,035 | 9/18/2019 |
| 1.9.4.1450-refs-pull-95-merge | 1,077 | 9/18/2019 |
# 1.9.5
- Added Rollback data model hook.
- Fixed when some data model hooks were called.
# 1.9.4
- Fixed bug where comparing a nullable enum property to nullable enum variable can throw an exception if the variable is null.
# 1.9.3
- Added IDataAccessObjectAdvanced.DeflatedPredicate property.
# 1.9.2
- Added DataAccessModel.GetReference{T}(id) where T : DataAccessObject method.
# 1.9.1
- Allow querying new objects while committing by disabling transaction-context object cache (DataAccessObjectDataContext).
This can occur if there are any computed properties that need to perform additional queries (including implicit N+1 queries from dereferencing child properties) in order to generate the property value.
# 1.9.0
- Fixed potential query caching problems when using queries that include predicated deflated references.