LowCodeHub.QueryableExtensions
0.0.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package LowCodeHub.QueryableExtensions --version 0.0.1
NuGet\Install-Package LowCodeHub.QueryableExtensions -Version 0.0.1
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="LowCodeHub.QueryableExtensions" Version="0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LowCodeHub.QueryableExtensions" Version="0.0.1" />
<PackageReference Include="LowCodeHub.QueryableExtensions" />
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 LowCodeHub.QueryableExtensions --version 0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: LowCodeHub.QueryableExtensions, 0.0.1"
#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 LowCodeHub.QueryableExtensions@0.0.1
#: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=LowCodeHub.QueryableExtensions&version=0.0.1
#tool nuget:?package=LowCodeHub.QueryableExtensions&version=0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
LowCodeHub.QueryableExtensions
LowCodeHub.QueryableExtensions provides reusable query and EF Core building blocks for ASP.NET Core applications.
Features
- LINQ query extensions for filtering and ordering
- Pagination models and helpers
- Specification pattern helpers
- Lookup entities and query helpers
- Enum-to-lookup code mapping via
LookupCodeAttribute - Localization-related value objects and converters
- EF Core transaction manager with:
ExecuteInTransactionAsyncExecuteInTransactionWithRetryAsync- optional
IsolationLeveloverloads
Installation
dotnet add package LowCodeHub.QueryableExtensions
Quick usage
EF Core lookup support
In your DbContext model configuration:
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.AddLookupSupport();
base.OnModelCreating(modelBuilder);
}
In DI registration:
services.AddDbContext<MyDbContext>(options => ...);
services.AddLookupSupport<MyDbContext>();
Transaction manager
services.AddTransactionManager<MyDbContext>();
await transactionManager.ExecuteInTransactionAsync(async scope =>
{
// data changes
// auto-commit on success / auto-rollback on failure
});
With retry + isolation level:
await transactionManager.ExecuteInTransactionWithRetryAsync(
async scope =>
{
// data changes
},
System.Data.IsolationLevel.ReadCommitted,
cancellationToken);
Manual commit/rollback is still supported inside scope if needed.
Specifications
var query = dbContext.Users.AsQueryable()
.WithSpecification(new ActiveUsersSpecification());
Lookups
var options = await lookupRepository.GetOptionsAsync("ORDER_STATUS", "en", cancellationToken: cancellationToken);
Queryable usage is still available:
var options = (await dbContext.Set<LookupItemEntity>()
.WhereActive()
.WhereSetCode("ORDER_STATUS")
.OrderBySortOrder()
.ToListAsync(cancellationToken))
.ToLookupOptions("en");
Enum mapping:
public enum OrderStatus
{
[LookupCode("PENDING")]
Pending,
[LookupCode("APPROVED")]
Approved
}
var code = OrderStatus.Pending.ToCode();
var status = "APPROVED".ToEnum<OrderStatus>();
Best practices
- Keep specifications focused and composable.
- Use retry transaction API for transient-failure environments.
- Normalize lookup codes in persistence and treat them as stable identifiers.
- Pass explicit
IsolationLevelonly when business consistency requires it. - Keep transaction scopes short and side-effect free.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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.
-
net10.0
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.