![]() |
VOOZH | about |
dotnet add package devdeer.Libraries.Abstractions --version 20.1.6
NuGet\Install-Package devdeer.Libraries.Abstractions -Version 20.1.6
<PackageReference Include="devdeer.Libraries.Abstractions" Version="20.1.6" />
<PackageVersion Include="devdeer.Libraries.Abstractions" Version="20.1.6" />Directory.Packages.props
<PackageReference Include="devdeer.Libraries.Abstractions" />Project file
paket add devdeer.Libraries.Abstractions --version 20.1.6
#r "nuget: devdeer.Libraries.Abstractions, 20.1.6"
#:package devdeer.Libraries.Abstractions@20.1.6
#addin nuget:?package=devdeer.Libraries.Abstractions&version=20.1.6Install as a Cake Addin
#tool nuget:?package=devdeer.Libraries.Abstractions&version=20.1.6Install as a Cake Tool
If you want to use this package you should be aware of some principles and practices we at DEVDEER use. So be aware that this is not backed by a public repository. The purpose here is to give out customers easy access to our logic. Nevertheless you are welcome to use this lib if it provides any advantages.
This package contains base types and helper classes for all other DEVDEER Nuget Packages. It is usually referenced by those packages so you don't need to put an explicit reference in your projects.
The default namespace is devdeer.Libraries.Abstractions. Types are organized in sub-namespaces (see below).
We are collecting .NET attributes here which are normally used by sub-packages.
We are building our apps in a multi-layered architecture. This means that we have components providing business logic and other components taking care of data access (usuallly to relational databases). The logic-components are calling the repositories. This enables us to easilly switch database backends if we need to.
The types in this namespace are abstract base types for those classes. They already contain some basic logic but are not related to any specific technology. Have a look at devdeer.Libraries.Repository.EntityFrameworkCore to see how these types are used. Also devdeer.Libraries.AspNetCore.RestApi might be interesting here because the BaseController is using these types here indirectly.
Also see the Interfaces section below.
We are collecting all Enumerations needed by this or sub-projects in this namespace.
Contains types inheriting from System.Exception.
All of the types here are extension types for other types.
For some issues like reflection, expressions and other things we often need logic which is collected in this namespace.
Contains all base interfaces. Most of them are used to enable IoC for the stuff in BaseTypes namespace.
Some of our BaseTypes and Interfaces are expecting or returning certain POCO`s which are defined here. Some other types might be added too.
DEVDEER is a company from Magdeburg, Germany which is specialized in consulting, project management and development. We are very focussed on Microsoft Azure as a platform to run our products and solutions in the cloud. So all of our backend components usually runs in this environment and is developed using .NET. In the frontend area we are using react and a huge bunch of packages to build our UIs.
You can find us online:
👁 YouTube
👁 YouTube Channel Subscribers
👁 YouTube Channel Views
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 5 NuGet packages that depend on devdeer.Libraries.Abstractions:
| Package | Downloads |
|---|---|
|
devdeer.Libraries.AspNetCore.RestApi
Initialization and configuration including useful base types for ASP.NET Core APIs. |
|
|
devdeer.Libraries.Repository.EntityFrameworkCore
Provides a basic repository for EF Core. |
|
|
devdeer.Libraries.Repository.EntityFrameworkCore.Authorized
Provides repositories base types for EF Core authorized contexts based on automatically resolved HTTP claims principals. |
|
|
devdeer.Libraries.Abstractions.AspNetCore
The abstractions provide basic functionallity like models. |
|
|
devdeer.Libraries.Abstractions.EntityFramework
Provides basic types and interfaces for EF core related tasks used by other DEVDEER Nuget libs. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 20.1.6 | 623 | 5/15/2026 |
| 20.1.5 | 771 | 5/4/2026 |
| 20.1.4 | 526 | 4/19/2026 |
| 20.1.3 | 1,087 | 3/22/2026 |
| 20.1.2 | 480 | 3/6/2026 |
| 20.1.1 | 542 | 1/14/2026 |
| 20.0.2 | 344 | 12/30/2025 |
| 20.0.1 | 144 | 12/30/2025 |
| 20.0.0 | 534 | 12/13/2025 |
| 19.3.1 | 766 | 11/28/2025 |
| 19.3.0 | 992 | 11/20/2025 |
| 19.2.0 | 600 | 11/7/2025 |
| 19.1.4 | 513 | 10/21/2025 |
| 19.1.3 | 778 | 10/21/2025 |
| 19.1.2 | 237 | 10/21/2025 |
| 19.1.1 | 355 | 10/21/2025 |
| 19.1.0 | 249 | 10/21/2025 |
| 19.0.7 | 429 | 10/18/2025 |
| 19.0.6 | 292 | 10/18/2025 |
| 19.0.5 | 207 | 10/18/2025 |
- New override LogicBase.HandleModelBeforeReturn allows hooking into model retrieval.
- GetPagingBaseQuery gets passed optional paging information
- Package updates.