GodelTech.Data
9.0.0
dotnet add package GodelTech.Data --version 9.0.0
NuGet\Install-Package GodelTech.Data -Version 9.0.0
<PackageReference Include="GodelTech.Data" Version="9.0.0" />
<PackageVersion Include="GodelTech.Data" Version="9.0.0" />
<PackageReference Include="GodelTech.Data" />
paket add GodelTech.Data --version 9.0.0
#r "nuget: GodelTech.Data, 9.0.0"
#addin nuget:?package=GodelTech.Data&version=9.0.0
#tool nuget:?package=GodelTech.Data&version=9.0.0
GodelTech.Data
Description
GodelTech.Data is a .NET library designed to facilitate access to data storage using the Unit of Work, Repository, and Entity design patterns. It provides interfaces for implementing these patterns and includes support for Entity Framework Core through the GodelTech.Data.EntityFrameworkCore library.
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
License
This project is licensed under the MIT License. See the LICENSE file for more details.
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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.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 | |
---|---|---|---|
9.0.0 | 176 | 4/17/2025 | |
8.1.0 | 826 | 6/30/2024 | |
8.0.0 | 4,983 | 1/17/2024 | |
7.0.1 | 2,557 | 9/12/2023 | |
7.0.0 | 558 | 8/19/2023 | |
6.5.0 | 6,728 | 11/1/2022 | |
6.4.0 | 2,272 | 10/16/2022 | |
6.3.0 | 12,612 | 8/18/2022 | |
6.2.0 | 3,695 | 7/15/2022 | |
6.1.0 | 1,900 | 7/5/2022 | |
6.0.0 | 2,026 | 4/3/2022 | |
5.0.0 | 2,852 | 8/5/2021 | |
4.0.2 | 1,092 | 8/1/2021 | |
4.0.1 | 847 | 7/18/2021 | |
3.1.3 | 762 | 7/18/2021 | |
3.1.2 | 767 | 7/17/2021 | |
3.1.1 | 846 | 7/17/2021 | |
3.0.6 | 4,531 | 2/2/2021 | |
3.0.4 | 818 | 12/30/2020 | |
3.0.1 | 1,863 | 11/21/2020 | |
3.0.0 | 1,478 | 11/21/2020 | |
2.0.0 | 982 | 11/21/2020 | |
1.0.0-rc.4 | 377 | 7/13/2020 | |
1.0.0-rc.3 | 865 | 4/6/2020 | |
1.0.0-rc.1 | 381 | 1/28/2020 |