Shaolinq.SqlServer
1.9.5
See the version list below for details.
dotnet add package Shaolinq.SqlServer --version 1.9.5
NuGet\Install-Package Shaolinq.SqlServer -Version 1.9.5
<PackageReference Include="Shaolinq.SqlServer" Version="1.9.5" />
<PackageVersion Include="Shaolinq.SqlServer" Version="1.9.5" />
<PackageReference Include="Shaolinq.SqlServer" />
paket add Shaolinq.SqlServer --version 1.9.5
#r "nuget: Shaolinq.SqlServer, 1.9.5"
#:package Shaolinq.SqlServer@1.9.5
#addin nuget:?package=Shaolinq.SqlServer&version=1.9.5
#tool nuget:?package=Shaolinq.SqlServer&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 MySql support.
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, Postgres and SQL Server.
- 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. |
-
- 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 | 590 | 10/1/2020 |
| 1.9.5.1476-refs-pull-109-head | 499 | 10/1/2020 |
| 1.9.5.1475-refs-pull-100-merge | 517 | 9/30/2020 |
| 1.9.5.1474-refs-pull-104-merge | 527 | 9/30/2020 |
| 1.9.5.1471-refs-pull-108-merge | 553 | 9/30/2020 |
| 1.9.5.1470-refs-pull-108-merge | 570 | 9/30/2020 |
| 1.9.5.1469-refs-pull-108-head | 561 | 9/30/2020 |
| 1.9.5.1468-refs-pull-107-merge | 567 | 9/30/2020 |
| 1.9.5.1467-refs-pull-107-head | 583 | 9/30/2020 |
| 1.9.5.1466-refs-pull-106-merge | 559 | 9/30/2020 |
| 1.9.5.1465-refs-pull-106-head | 551 | 9/30/2020 |
| 1.9.5.1464-refs-pull-105-merge | 589 | 9/30/2020 |
| 1.9.5.1462-refs-pull-104-merge | 616 | 9/30/2020 |
| 1.9.5.1460-refs-pull-100-merge | 594 | 4/1/2020 |
| 1.9.5 | 1,449 | 1/17/2020 |
| 1.9.4.1454-refs-pull-97-merge | 653 | 9/18/2019 |
| 1.9.4.1453-refs-pull-97-head | 634 | 9/18/2019 |
| 1.9.4.1452-refs-pull-96-merge | 605 | 9/18/2019 |
| 1.9.4.1451-refs-pull-96-head | 623 | 9/18/2019 |
| 1.9.4.1450-refs-pull-95-merge | 657 | 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.