![]() |
VOOZH | about |
dotnet add package SimplyWorks.CqApi --version 8.2.6
NuGet\Install-Package SimplyWorks.CqApi -Version 8.2.6
<PackageReference Include="SimplyWorks.CqApi" Version="8.2.6" />
<PackageVersion Include="SimplyWorks.CqApi" Version="8.2.6" />Directory.Packages.props
<PackageReference Include="SimplyWorks.CqApi" />Project file
paket add SimplyWorks.CqApi --version 8.2.6
#r "nuget: SimplyWorks.CqApi, 8.2.6"
#:package SimplyWorks.CqApi@8.2.6
#addin nuget:?package=SimplyWorks.CqApi&version=8.2.6Install as a Cake Addin
#tool nuget:?package=SimplyWorks.CqApi&version=8.2.6Install as a Cake Tool
👁 NuGet Version
👁 License: MIT
SW.CqApi eliminates boilerplate code by automatically routing HTTP requests to handler classes based on folder structure and namespaces. Build REST APIs with zero controllers using CQRS patterns and convention-over-configuration.
dotnet add package SimplyWorks.CqApi
// Startup.cs
services.AddCqApi(config =>
{
config.ApplicationName = "My API";
config.UrlPrefix = "api";
});
// Resources/Users/Create.cs → POST /api/users
public class Create : ICommandHandler<CreateUserRequest, int>
{
public async Task<int> Handle(CreateUserRequest request)
{
// Your business logic here
return userId;
}
}
For complete documentation, examples, and advanced features, visit:
📚 GitHub Repository & Documentation
Made with ❤️ by Simplify9
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. 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 |
|---|---|---|
| 8.2.6 | 838 | 1/12/2026 |
| 8.2.5 | 144 | 1/12/2026 |
| 8.2.4 | 741 | 12/1/2025 |
| 8.2.3 | 455 | 9/16/2025 |
| 8.2.2 | 370 | 9/16/2025 |
| 8.2.1 | 332 | 9/15/2025 |
| 8.2.0 | 338 | 9/15/2025 |
| 8.1.1 | 251 | 9/14/2025 |
| 8.1.0 | 219 | 9/14/2025 |
| 8.0.7 | 400 | 8/18/2025 |
| 8.0.5 | 414 | 8/11/2025 |
| 8.0.0 | 1,692 | 1/20/2025 |
| 6.1.7 | 2,590 | 11/29/2023 |
| 6.1.5 | 448 | 9/10/2023 |
| 6.1.3 | 286 | 8/23/2023 |
| 6.1.0 | 302 | 7/25/2023 |
| 6.0.5 | 7,147 | 2/14/2023 |
| 6.0.3 | 380 | 2/14/2023 |
| 6.0.1 | 383 | 2/13/2023 |
| 5.0.5 | 7,461 | 6/5/2022 |
See https://github.com/simplify9/SW-CqApi/releases for release notes.