Shaolinq.Postgres
1.2.0.1071-rc1
See the version list below for details.
dotnet add package Shaolinq.Postgres --version 1.2.0.1071-rc1
NuGet\Install-Package Shaolinq.Postgres -Version 1.2.0.1071-rc1
<PackageReference Include="Shaolinq.Postgres" Version="1.2.0.1071-rc1" />
<PackageVersion Include="Shaolinq.Postgres" Version="1.2.0.1071-rc1" />
<PackageReference Include="Shaolinq.Postgres" />
paket add Shaolinq.Postgres --version 1.2.0.1071-rc1
#r "nuget: Shaolinq.Postgres, 1.2.0.1071-rc1"
#:package Shaolinq.Postgres@1.2.0.1071-rc1
#addin nuget:?package=Shaolinq.Postgres&version=1.2.0.1071-rc1&prerelease
#tool nuget:?package=Shaolinq.Postgres&version=1.2.0.1071-rc1&prerelease
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,047 | 10/1/2020 |
| 1.9.5.1476-refs-pull-109-head | 969 | 10/1/2020 |
| 1.9.5.1475-refs-pull-100-merge | 975 | 9/30/2020 |
| 1.9.5.1474-refs-pull-104-merge | 993 | 9/30/2020 |
| 1.9.5.1471-refs-pull-108-merge | 964 | 9/30/2020 |
| 1.9.5.1470-refs-pull-108-merge | 1,036 | 9/30/2020 |
| 1.9.5.1469-refs-pull-108-head | 1,016 | 9/30/2020 |
| 1.9.5.1468-refs-pull-107-merge | 1,032 | 9/30/2020 |
| 1.9.5.1467-refs-pull-107-head | 1,012 | 9/30/2020 |
| 1.9.5.1466-refs-pull-106-merge | 1,001 | 9/30/2020 |
| 1.9.5.1465-refs-pull-106-head | 1,056 | 9/30/2020 |
| 1.9.5.1464-refs-pull-105-merge | 1,032 | 9/30/2020 |
| 1.9.5.1462-refs-pull-104-merge | 1,083 | 9/30/2020 |
| 1.9.5.1460-refs-pull-100-merge | 1,024 | 4/1/2020 |
| 1.9.5 | 1,717 | 1/17/2020 |
| 1.9.4.1454-refs-pull-97-merge | 1,161 | 9/18/2019 |
| 1.9.4.1453-refs-pull-97-head | 1,078 | 9/18/2019 |
| 1.9.4.1452-refs-pull-96-merge | 1,052 | 9/18/2019 |
| 1.9.4.1451-refs-pull-96-head | 1,052 | 9/18/2019 |
| 1.2.0.1071-rc1 | 1,870 | 4/14/2017 |
- New DataAccessModelConfiguration ValueTypesAutoImplicitDefault and AlwaysSubmitDefaultValues settings
- Add support for DataAccessModel hooks
- [BREAKING_CHANGE] Changed handling of value type properties so that they don't get given default values on instantiation of the parent DAO unless a value is specified using DefaultValueAttribute. Attempts to commit incomplete objects result in a MissingPropertyValueException.
-- Previous --
- Fixed bug where including properties using a lambda over a generic type class or function type fails
- Support explicit naming of foreign keys via
NamingTransformsConfiguration
- Support explicit naming of primary keys via NamingTransformsConfiguration
- SqlServerProvider: Don't add NOT NULL conditions on index columns if index is not unique
- Support disabling foreign key constraints on DAO properties and BackReferences via ForeignObjectConstraintAttribute.Disabled
- Added UniqueNullIndexAnsiComplianceFixerClassicBehaviour
- Improved performance DataAccessModel.BuildDataAccessModel(Type)
- Added better support for explicitly setting identity columns.
- Added AutoIncrementAttribute.ValidateExpression support allowing declarative skipping of autoincrement values.
- Fix bug where TransactionContext for null transactions (before most outer DataAccessScope) could be replaced with TransactionContexts from inner scopes.
- Various other transaction and async related fixes
- Fix ambient TransactionContext sometimes not being disposed (like on initialisation of DataAccessModel)
- Changed TransactionContext to have to be acquired in a using statement in order to be created. Transactioncontext.GetCurrent() will only return non-null if there is already a current transaction. Fixes leaky ambient DataAccessObjectDataContexts.
- RewriteAsync now validates manually written async methods to make sure they're not calling sync methods when async equivalents are available.
- RewriteAsync now supports searching all types for a matching extension method that can be used for async (rather than just the type that defined the non-async method).
- Added more connection configuration properties to Postgres (KeepAlive, others)
-- Previous --
- AsyncRewriter improvements
- Fixed InvalidCastException when saving a property using a predicated deflated references where the referenced type is not the same as the property container type.
- Fixed OrderBy sometimes ignored with some queries (e.g. GroupBy)
- Added SumAsync(selector) method for decimal and decimal?
- Fix potential exception when projecting structs
- Fixed potential memory leak when querying with similarly structured queries with different constant values
- Fixed ForUpdate not working when using Aggregates after ForUpdate is applied
- Added SumAsync(Decimal) support
- Fixed exception when using Enums with no declared values
- Fixed Insert/Update of predicated deflated references