CommandQuery alternatives and similar packages
Based on the "API" category.
Alternatively, view CommandQuery alternatives based on common mentions on social networks and blogs.
-
Xamarin.Essentials
Xamarin.Essentials provides developers with cross-platform APIs for their mobile applications. -
FFImageLoading - Fast & Furious Image Loading
Fast & Furious Image Loading -
TLSharp
It's a perfect fit for any developer who would like to send data directly to Telegram users or write own custom Telegram client. -
Mobius: C# API for Spark
Mobius adds C# language binding to Apache Spark, enabling the implementation of Spark driver code and data processing operations in C#. -
SapphireDb
SapphireDb Server, a self-hosted, easy to use realtime database for Asp.Net Core and EF Core -
RedditSharp
C# Implementation of the Reddit API. This is an ("unofficial") Fork of SirCmpwn/RedditSharp with Nuget package/support. -
Nelibur
Nelibur is message based web service framework on the pure WCF. Nelibur simplifies creating high-performance and message based web services and you certainly have all the power of the WCF. -
Lib.AspNetCore.ServerSentEvents
Lib.AspNetCore.ServerSentEvents is a library which provides Server-Sent Events (SSE) support for ASP.NET Core -
Breeze
Api framework enabling rich data access by using the OData 3 protocol. Client libraries available for Javascript and C#. -
Lib.Web.Mvc
Lib.Web.Mvc is a library bringing extensions to ASP.NET MVC for HTTP/2, Range Requests, Content Security Policy, jqGrid and more. -
cryptocompare-api
An async-based CryptoCompare API client library for .NET and .NET Core -
Developer Exception Json Response Middleware
Developer Exception Json Response Middleware -
ASP.NET Web API
Framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices -
ASP.NET WebAPI
Framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices
Pixel-Perfect Multi-Platform Applications with C# and XAML
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of CommandQuery or a related project?
README
CommandQuery
Introduction
Command Query Separation (CQS) for .NET Framework and .NET Core
- Build services that separate the responsibility of commands and queries
- Focus on implementing the handlers for commands and queries
- Create APIs with less boilerplate code
Available for:
🌐 ASP.NET Web API 2
🌐 ASP.NET Core
⚡ AWS Lambda
⚡ Azure Functions
Command Query Separation?
Queries: Return a result and do not change the observable state of the system (are free of side effects).
Commands: Change the state of a system but do not return a value.
In other words:
- Commands
- Writes (Create, Update, Delete) data
- Queries
- Reads and returns data
The dogmatic approach to commands, that they do not return a value, can be inconvenient.
CommandQuery
has a more pragmatic take and supports commands with result.
Inspired by:
- https://cuttingedge.it/blogs/steven/pivot/entry.php?id=91
- https://cuttingedge.it/blogs/steven/pivot/entry.php?id=92
Packages
README | Platform | NuGet | Sample |
---|---|---|---|
[CommandQuery](CommandQuery.md) | .NET Framework and .NET Standard | CommandQuery.Sample.Contracts , CommandQuery.Sample.Handlers |
|
[CommandQuery.AspNet.WebApi](CommandQuery.AspNet.WebApi.md) | ASP.NET Web API 2 | CommandQuery.Sample.AspNet.WebApi |
|
[CommandQuery.AspNetCore](CommandQuery.AspNetCore.md) | ASP.NET Core | CommandQuery.Sample.AspNetCore.V3 |
|
[CommandQuery.AWSLambda](CommandQuery.AWSLambda.md) | AWS Lambda | CommandQuery.Sample.AWSLambda |
|
[CommandQuery.AzureFunctions](CommandQuery.AzureFunctions.md) | Azure Functions | CommandQuery.Sample.AzureFunctions.Vs3 |
|
[CommandQuery.Client](CommandQuery.Client.md) | .NET Framework and .NET Standard | CommandQuery.Sample.Client |