Jezda.Common.Domain 1.0.23

There is a newer version of this package available.
See the version list below for details.
dotnet add package Jezda.Common.Domain --version 1.0.23
                    
NuGet\Install-Package Jezda.Common.Domain -Version 1.0.23
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Jezda.Common.Domain" Version="1.0.23" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Jezda.Common.Domain" Version="1.0.23" />
                    
Directory.Packages.props
<PackageReference Include="Jezda.Common.Domain" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Jezda.Common.Domain --version 1.0.23
                    
#r "nuget: Jezda.Common.Domain, 1.0.23"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Jezda.Common.Domain@1.0.23
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Jezda.Common.Domain&version=1.0.23
                    
Install as a Cake Addin
#tool nuget:?package=Jezda.Common.Domain&version=1.0.23
                    
Install as a Cake Tool

Jezda.Common.Domain

Common domain models, base entities, and value objects for Jezda enterprise applications.

📦 Installation

dotnet add package Jezda.Common.Domain

🎯 What's Included

Base Entities

  • BaseEntity - Base class with Id, CreatedDate, UpdatedDate
  • IDeletedEntity - Interface for soft delete support (IsDeleted property)

Domain Models

  • PagingInfo - Pagination request parameters (PageNumber, PageSize, SortColumn, SortDirection, SearchTerm)
  • PagedList<T> - Paginated response wrapper with metadata (TotalCount, TotalPages, HasNextPage, etc.)

Enums & Value Objects

  • OrganisationType - Organization type enumeration
  • Various domain-specific value objects

💡 Quick Example

// Using BaseEntity
public class Product : BaseEntity
{
    public string Name { get; set; }
    public decimal Price { get; set; }
}

// Using IDeletedEntity for soft delete
public class Category : BaseEntity, IDeletedEntity
{
    public string Name { get; set; }
    public bool IsDeleted { get; set; }
}

// Using PagedList
var pagedResult = new PagedList<Product>
{
    Items = products,
    TotalCount = 100,
    PageNumber = 1,
    PageSize = 20
};

📚 Documentation

For complete documentation, see the main repository README.

📄 License

MIT License - see LICENSE for details.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Jezda.Common.Domain:

Package Downloads
Jezda.Common.Abstractions

Interfaces and abstractions for Repository Pattern, Unit of Work, and Specification Pattern. Includes IGenericRepository with 50+ methods, IUnitOfWork, ISpecification, and BaseSpecification.

Jezda.Common.Extensions

Extension methods for common .NET types including DateTime, PagedList, HTTP responses, and Hangfire integration with PostgreSQL.

Jezda.Common.Helpers

Utility helpers for encryption, string manipulation, date/time handling, currency codes, data masking, and permissions. Includes EncryptionHelper, StringHelper, DisplayMasker, and more.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.31 199 11/7/2025
1.0.30 218 10/31/2025
1.0.29 250 10/27/2025
1.0.28 227 10/23/2025
1.0.27 183 10/17/2025
1.0.26 205 10/16/2025
1.0.25 222 10/15/2025
1.0.24 208 10/14/2025
1.0.23 232 10/14/2025
1.0.22 208 10/2/2025
1.0.21 202 9/11/2025
1.0.20 197 9/11/2025
1.0.19 293 8/18/2025
1.0.18 136 8/16/2025
1.0.17 212 8/13/2025
1.0.16 203 8/10/2025
1.0.15 179 8/9/2025
1.0.14 92 8/2/2025
1.0.13 102 8/2/2025
1.0.12 200 7/17/2025
1.0.11 197 7/14/2025
1.0.10 190 7/14/2025
1.0.9 208 7/14/2025
1.0.8 196 7/10/2025
1.0.7 195 7/8/2025
1.0.6 193 7/2/2025
1.0.5 155 6/28/2025
1.0.4 149 6/28/2025
1.0.2 141 6/27/2025