![]() |
VOOZH | about |
dotnet add package XperienceCommunity.CQRS.Web --version 1.0.0-prerelease-8-1
NuGet\Install-Package XperienceCommunity.CQRS.Web -Version 1.0.0-prerelease-8-1
<PackageReference Include="XperienceCommunity.CQRS.Web" Version="1.0.0-prerelease-8-1" />
<PackageVersion Include="XperienceCommunity.CQRS.Web" Version="1.0.0-prerelease-8-1" />Directory.Packages.props
<PackageReference Include="XperienceCommunity.CQRS.Web" />Project file
paket add XperienceCommunity.CQRS.Web --version 1.0.0-prerelease-8-1
#r "nuget: XperienceCommunity.CQRS.Web, 1.0.0-prerelease-8-1"
#:package XperienceCommunity.CQRS.Web@1.0.0-prerelease-8-1
#addin nuget:?package=XperienceCommunity.CQRS.Web&version=1.0.0-prerelease-8-1&prereleaseInstall as a Cake Addin
#tool nuget:?package=XperienceCommunity.CQRS.Web&version=1.0.0-prerelease-8-1&prereleaseInstall as a Cake Tool
A CQRS implementation influenced by https://github.com/jbogard/MediatR/ combined with https://github.com/vkhorikov/CSharpFunctionalExtensions Maybe and Result monads for Kentico Xperience applications.
This package is compatible with ASP.NET Core 6+ and is designed to be used with Kentico Xperience 13.0
Note: This library requires Kentico Xperience 13: Refresh 1 (Hotfix 13.0.16 and later).
This library is separated into (3) NuGet packages. Each package is associated with a different part of the Onion Architecture. You can install all of these into your web application project or isolate your Kentico Xperience types behind abstractions.
XperienceCommunity.CQRS.Core
XperienceCommunity.CQRS.Data
XperienceCommunity.CQRS.Web
First, install the NuGet package(s) in your ASP.NET Core projects (see the example project under /samples)
dotnet add package XperienceCommunity.CQRS.Core
dotnet add package XperienceCommunity.CQRS.Data
dotnet add package XperienceCommunity.CQRS.Web
Create a new implementation of IQuery<T>
public record HomePageQuery : IQuery<HomePageQueryData>;
public record HomePageQueryData(int DocumentID, string Title, Maybe<string> BodyHTML);
Create a new implementation of IQueryHandler<TQuery, TResponse>
public class HomePageQueryHandler : CacheableQueryHandler<HomePageQuery, HomePageQueryData>
{
private readonly IPageRetriever retriever;
public HomePageQueryHandler(IPageRetriever retriever) => this.retriever = retriever;
public override Task<Result<HomePageQueryData>> Execute(HomePageQuery query, CancellationToken token) =>
pageRetriever.RetrieveAsync<HomePage>(q => q.TopN(1), cancellationToken: token)
.TryFirst()
.ToResult($"Could not find any [{HomePage.CLASS_NAME}]")
.Map(homePage =>
{
var bodyHTML = string.IsNullOrWhiteSpace(p.Fields.BodyHTML)
? Maybe<string>.None
: p.Fields.BodyHTML;
return new HomePageQueryData(homePage.DocumentID, homePage.Fields.Title, bodyHTML);
});
protected override ICacheDependencyKeysBuilder AddDependencyKeys(
HomePageQuery query,
HomePageQueryData response,
ICacheDependencyKeysBuilder builder) =>
builder.Page(response.DocumentID);
}
Note: To be identified by the library, all Query and Command handler classes must be named with the suffix
QueryHandlerorCommandHandler.
Register the library's dependencies with the service collection
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddXperienceCQRS(typeof(HomePageQueryHandler).Assembly);
// ...
}
}
(Optional) Configure cache settings through appsettings.json:
"XperienceCommunity": {
"CQRS": {
"Caching": {
"Razor": {
"CacheSlidingExpiration": "00:02:00",
"CacheAbsoluteExpiration": "00:06:00",
"IsEnabled": true
},
"Query": {
"CacheItemDuration": "00:10:00",
"IsEnabled": true
}
}
}
}
Note: If using
dotnet watchfor local development, it's recommended to disable Razor and Query caching because .NET's hot reloading does not know about the memory caching and changes to code might not be reflected due to cached information.
(Optional) Configure cache settings through dependency injection:
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services
.AddXperienceCQRS(typeof(HomePageQueryHandler).Assembly)
.Configure<RazorCacheConfiguration>(c =>
{
c.IsEnabled = false;
})
.Configure<QueryCacheConfiguration>(c =>
{
c.CacheItemDuration = TimeSpan.FromMinutes(20);
});
}
}
Use queries in your MVC Controllers, application services, or View Components
public class HomePageViewComponent : ViewComponent
{
private readonly IQueryDispatcher dispatcher;
public HomePageViewComponent(IQueryDispatcher dispatcher) =>
this.dispatcher = dispatcher;
public Task<IViewComponentResult> Invoke() =>
dispatcher.Dispatch(new HomePageQuery(), HttpContext.RequestAborted)
.ViewWithFallbackOnFailure(this, "HomePage", data => new HomePageViewModel(data));
}
@using Microsoft.AspNetCore.Html
@using XperienceCommunity.Sandbox.Web.Features.Home.Components
@model HomePageViewModel
<h1>@Model.Title</h1>
@Model.BodyHTML.GetValueOrDefault(HtmlString.Empty)
@if (Model.ImagePath.HasValue)
{
<img src="@Model.ImagePath.GetValueOrThrow()" alt="@Model.Title" />
}
This library's primary goal is to isolate data access into individual operations, with explicit and type-safe
cache item names and dependencies. It models both content and operations with Maybe and Result monads.
Most Kentico Xperience 13.0 sites focus on data retrieval for the ASP.NET Core application and this library focuses on supporting robust data access. It also encourages data submission/modification operations (ex: commerce, external system integrations, user data management) to be separated from data retrieval.
To build this project, you must have v6.0.300 or higher of the .NET SDK installed.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. 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 was computed. 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 was computed. 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. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0-prerelease-8-1 | 341 | 5/18/2022 |
| 1.0.0-prerelease-7-1 | 285 | 5/15/2022 |