FML.Infrastructure.Core 1.0.0

FML.Infrastructure.Core

Core infrastructure interfaces and utilities for FML applications.

Installation

dotnet add package FML.Infrastructure.Core --source https://nuget.freakmylife.fr/v3/index.json

Components

IEntity

Base interface for all entities with a primary key.

public class MyEntity : IEntity<int>
{
    public int Id { get; set; }
}

QueryParameters

Pagination and ordering parameters for queries.

var parameters = new QueryParameters
{
    Page = 1,
    Limit = 20,
    OrderBy = "Name",
    OrderDesc = false
};

Showing the top 20 packages that depend on FML.Infrastructure.Core.

Packages Downloads
FML.Infrastructure.Data
Data access infrastructure (ICrudRepository, IUnitOfWork, QueryableExtensions)
2

.NET 9.0

  • No dependencies.

Version Downloads Last updated
1.0.0 2 02/07/2026