I-Synergy.Framework.CQRS
2025.10925.10144.25-preview
Prefix Reserved
This is a prerelease version of I-Synergy.Framework.CQRS.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package I-Synergy.Framework.CQRS --version 2025.10925.10144.25-preview
NuGet\Install-Package I-Synergy.Framework.CQRS -Version 2025.10925.10144.25-preview
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="I-Synergy.Framework.CQRS" Version="2025.10925.10144.25-preview" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="I-Synergy.Framework.CQRS" Version="2025.10925.10144.25-preview" />
<PackageReference Include="I-Synergy.Framework.CQRS" />
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 I-Synergy.Framework.CQRS --version 2025.10925.10144.25-preview
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: I-Synergy.Framework.CQRS, 2025.10925.10144.25-preview"
#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 I-Synergy.Framework.CQRS@2025.10925.10144.25-preview
#: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=I-Synergy.Framework.CQRS&version=2025.10925.10144.25-preview&prerelease
#tool nuget:?package=I-Synergy.Framework.CQRS&version=2025.10925.10144.25-preview&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
I-Synergy Framework CQRS
Example of CQRS implementation
using ISynergy.Framework.CQRS.Extensions;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using System.Reflection;
using ISynergy.Framework.Core.Abstractions.Services;
using ISynergy.Framework.Core.Services;
namespace ISynergy.Framework.AspNetCore.Sample;
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
// Register core services
services.AddScoped<IMessageService, MessageService>();
// Add CQRS
services.AddCQRS();
// Register handlers from current assembly
services.AddHandlers(Assembly.GetExecutingAssembly());
// Add notifications after command execution
services.AddCommandNotifications();
// Add logging for command and query handlers
services.AddCQRSLogging();
// Other services
services.AddControllers();
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
endpoints.MapGet("/", async context =>
{
await context.Response.WriteAsync("Hello World!");
});
});
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. 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 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
- I-Synergy.Framework.Core (>= 2025.10925.10144.25-preview)
-
net8.0
- I-Synergy.Framework.Core (>= 2025.10925.10144.25-preview)
-
net9.0
- I-Synergy.Framework.Core (>= 2025.10925.10144.25-preview)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.