Shaolinq.Postgres.DotConnect
1.9.5
See the version list below for details.
dotnet add package Shaolinq.Postgres.DotConnect --version 1.9.5
NuGet\Install-Package Shaolinq.Postgres.DotConnect -Version 1.9.5
<PackageReference Include="Shaolinq.Postgres.DotConnect" Version="1.9.5" />
<PackageVersion Include="Shaolinq.Postgres.DotConnect" Version="1.9.5" />
<PackageReference Include="Shaolinq.Postgres.DotConnect" />
paket add Shaolinq.Postgres.DotConnect --version 1.9.5
#r "nuget: Shaolinq.Postgres.DotConnect, 1.9.5"
#:package Shaolinq.Postgres.DotConnect@1.9.5
#addin nuget:?package=Shaolinq.Postgres.DotConnect&version=1.9.5
#tool nuget:?package=Shaolinq.Postgres.DotConnect&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 the DotConnect ADO.NET Postgres provider).
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. |
-
- dotConnect.Express.for.PostgreSQL (>= 7.10.1061)
- Shaolinq (>= 1.9.5)
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 | 617 | 10/1/2020 |
| 1.9.5.1476-refs-pull-109-head | 528 | 10/1/2020 |
| 1.9.5.1475-refs-pull-100-merge | 549 | 9/30/2020 |
| 1.9.5.1474-refs-pull-104-merge | 576 | 9/30/2020 |
| 1.9.5.1471-refs-pull-108-merge | 579 | 9/30/2020 |
| 1.9.5.1470-refs-pull-108-merge | 591 | 9/30/2020 |
| 1.9.5.1469-refs-pull-108-head | 608 | 9/30/2020 |
| 1.9.5.1468-refs-pull-107-merge | 571 | 9/30/2020 |
| 1.9.5.1467-refs-pull-107-head | 616 | 9/30/2020 |
| 1.9.5.1466-refs-pull-106-merge | 597 | 9/30/2020 |
| 1.9.5.1465-refs-pull-106-head | 610 | 9/30/2020 |
| 1.9.5.1464-refs-pull-105-merge | 632 | 9/30/2020 |
| 1.9.5.1462-refs-pull-104-merge | 657 | 9/30/2020 |
| 1.9.5.1460-refs-pull-100-merge | 627 | 4/1/2020 |
| 1.9.5 | 1,343 | 1/17/2020 |
| 1.9.4.1454-refs-pull-97-merge | 677 | 9/18/2019 |
| 1.9.4.1453-refs-pull-97-head | 679 | 9/18/2019 |
| 1.9.4.1452-refs-pull-96-merge | 642 | 9/18/2019 |
| 1.9.4.1451-refs-pull-96-head | 637 | 9/18/2019 |
| 1.9.4.1450-refs-pull-95-merge | 675 | 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.