Shaolinq.Postgres
1.8.11.1419-feature-allow-import
See the version list below for details.
dotnet add package Shaolinq.Postgres --version 1.8.11.1419-feature-allow-import
NuGet\Install-Package Shaolinq.Postgres -Version 1.8.11.1419-feature-allow-import
<PackageReference Include="Shaolinq.Postgres" Version="1.8.11.1419-feature-allow-import" />
<PackageVersion Include="Shaolinq.Postgres" Version="1.8.11.1419-feature-allow-import" />
<PackageReference Include="Shaolinq.Postgres" />
paket add Shaolinq.Postgres --version 1.8.11.1419-feature-allow-import
#r "nuget: Shaolinq.Postgres, 1.8.11.1419-feature-allow-import"
#:package Shaolinq.Postgres@1.8.11.1419-feature-allow-import
#addin nuget:?package=Shaolinq.Postgres&version=1.8.11.1419-feature-allow-import&prerelease
#tool nuget:?package=Shaolinq.Postgres&version=1.8.11.1419-feature-allow-import&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,056 | 10/1/2020 |
| 1.9.5.1476-refs-pull-109-head | 982 | 10/1/2020 |
| 1.9.5.1475-refs-pull-100-merge | 987 | 9/30/2020 |
| 1.9.5.1474-refs-pull-104-merge | 1,001 | 9/30/2020 |
| 1.9.5.1471-refs-pull-108-merge | 972 | 9/30/2020 |
| 1.9.5.1470-refs-pull-108-merge | 1,048 | 9/30/2020 |
| 1.9.5.1469-refs-pull-108-head | 1,024 | 9/30/2020 |
| 1.9.5.1468-refs-pull-107-merge | 1,042 | 9/30/2020 |
| 1.9.5.1467-refs-pull-107-head | 1,020 | 9/30/2020 |
| 1.9.5.1466-refs-pull-106-merge | 1,010 | 9/30/2020 |
| 1.9.5.1465-refs-pull-106-head | 1,063 | 9/30/2020 |
| 1.9.5.1464-refs-pull-105-merge | 1,039 | 9/30/2020 |
| 1.9.5.1462-refs-pull-104-merge | 1,092 | 9/30/2020 |
| 1.9.5.1460-refs-pull-100-merge | 1,030 | 4/1/2020 |
| 1.9.5 | 1,744 | 1/17/2020 |
| 1.9.4.1454-refs-pull-97-merge | 1,169 | 9/18/2019 |
| 1.9.4.1453-refs-pull-97-head | 1,090 | 9/18/2019 |
| 1.9.4.1452-refs-pull-96-merge | 1,060 | 9/18/2019 |
| 1.9.4.1451-refs-pull-96-head | 1,065 | 9/18/2019 |
| 1.8.11.1419-feature-allow-i... | 1,339 | 10/1/2018 |
# 1.8.11
- Fixed Count with Distinct (outside of an aggregate) sometimes producing invalid SQL.
# 1.8.10
- Fixed SQL Server unique index null handling ANSI compliance shouldn't include primary keys because they're not nullable.
# 1.8.9
- Fixed SQL Server unique index null handling ANSI compliance not always inserting index filter for null checks on columns foreign key columns.
# 1.8.8
- Fixed bool properties not being handled like other types when excluding a property from an index to support null-ansi-compliance.
- Ignore non-nullable columns when injecting conditions to exclude null values from a unique index in SQL server (for null-ansi-compliance).
# 1.8.7
- SQL Server provider null-ansi-compliance support whereby null values are excluded from unique indexes by means of a check for not null now excludes this check for properties that are explicitly referenced within the user-defined index condition (if a user-defined index condition is specified).
# 1.8.6
- Fixed SizeConstraintAttribute placed direectly on an enum type doesn't get inherited
by properties of that enum type if the property is nullable.
# 1.8.5
- Fixed NamingTransformsConfiguration.UniqueIndexConstraintName should default to using NamingTransformsConfiguration.IndexConstraintName before falling to default.
# 1.8.4
- Support defining naming transform for unique indexes (NamingTransformsConfiguration.UniqueIndexConstraintName).
- Added IndexNamesShouldIncludeIncludedProperties option to allow including the names of IncludeOnly properties in the name of indexes.
# 1.8.3
- Fix expressions (IndexAttribute.Condition, ComputedMember.GetExpression, ComputedMember.SetExpression) throwing exception when trying to call methods with overloads.
# 1.8.2
- Better support for parsing IndexAttribute.Condition, ComputedMemberAttribute.GetExpression, ComputedMemberAttribute.SetExpression
- Fix IndexAttribute.Condition not included in schema if index is applied at the class level
# 1.8.1
- Fix GetReference sometimes not working between different types that use the same primary key type.
# 1.8.0
- Major bug fix release
- Better support for conditions and and selects involving aggregate calls on recursively related objects projected off recursively related object collections
- Fixed some object sometimes returned multiple times if using Include() with related object collections
- Fixed sometimes less objects than expected are returned when Skip/Take is used in combination with Include() with related object collections
- General improvements to Include() support
- Added overloads to RelatedDataAccessObjects.Items() method - support loading from a new query if eager loaded items aren't available