GodelTech.Data
8.1.0
dotnet add package GodelTech.Data --version 8.1.0
NuGet\Install-Package GodelTech.Data -Version 8.1.0
<PackageReference Include="GodelTech.Data" Version="8.1.0" />
paket add GodelTech.Data --version 8.1.0
#r "nuget: GodelTech.Data, 8.1.0"
// Install GodelTech.Data as a Cake Addin #addin nuget:?package=GodelTech.Data&version=8.1.0 // Install GodelTech.Data as a Cake Tool #tool nuget:?package=GodelTech.Data&version=8.1.0
GodelTech.Data
.NET library to access data storage with Unit of Work, Repository and Entity classes
Overview
GodelTech.Data
project has interfaces for Unit of Work and Repository pattern.
Implementation of it for Entity Framework Core can be found in library GodelTech.Data.EntityFrameworkCore
Extensions
You can find Repository extensions using QueryParameters
and ISpecification
that allows you create requests easier.
QueryParameters.cs
public class QueryParameters<TEntity, TKey>
where TEntity : class, IEntity<TKey>
{
public FilterRule<TEntity, TKey> Filter { get; set; }
public SortRule<TEntity, TKey> Sort { get; set; }
public PageRule Page { get; set; }
}
SpecificationBase.cs
public abstract class SpecificationBase<TEntity, TKey> : CompositeSpecification<TEntity, TKey>
where TEntity : class, IEntity<TKey>
{
public override bool IsSatisfiedBy(TEntity candidate) => AsExpression().Compile().Invoke(candidate);
public abstract Expression<Func<TEntity, bool>> AsExpression();
}
Build
Artifacts
NuGet
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on GodelTech.Data:
Package | Downloads |
---|---|
GodelTech.Data.EntityFrameworkCore
Library to access database with Unit of Work, Repository and Entity classes for Entity Framework Core. |
|
GodelTech.Data.AutoMapper
Library for using AutoMapper with GodelTech.Data. |
|
GodelTech.Business
Library for services in business layer. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
8.1.0 | 488 | 6/30/2024 | |
8.0.0 | 2,673 | 1/17/2024 | |
7.0.1 | 2,502 | 9/12/2023 | |
7.0.0 | 547 | 8/19/2023 | |
6.5.0 | 6,638 | 11/1/2022 | |
6.4.0 | 2,249 | 10/16/2022 | |
6.3.0 | 11,055 | 8/18/2022 | |
6.2.0 | 3,631 | 7/15/2022 | |
6.1.0 | 1,872 | 7/5/2022 | |
6.0.0 | 1,996 | 4/3/2022 | |
5.0.0 | 2,810 | 8/5/2021 | |
4.0.2 | 1,056 | 8/1/2021 | |
4.0.1 | 812 | 7/18/2021 | |
3.1.3 | 725 | 7/18/2021 | |
3.1.2 | 733 | 7/17/2021 | |
3.1.1 | 810 | 7/17/2021 | |
3.0.6 | 4,447 | 2/2/2021 | |
3.0.4 | 776 | 12/30/2020 | |
3.0.1 | 1,817 | 11/21/2020 | |
3.0.0 | 1,431 | 11/21/2020 | |
2.0.0 | 936 | 11/21/2020 | |
1.0.0-rc.4 | 340 | 7/13/2020 | |
1.0.0-rc.3 | 778 | 4/6/2020 | |
1.0.0-rc.1 | 341 | 1/28/2020 |