cdmdotnet.StateManagement 3.0.4.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package cdmdotnet.StateManagement --version 3.0.4.3
NuGet\Install-Package cdmdotnet.StateManagement -Version 3.0.4.3
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="cdmdotnet.StateManagement" Version="3.0.4.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add cdmdotnet.StateManagement --version 3.0.4.3
#r "nuget: cdmdotnet.StateManagement, 3.0.4.3"
#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.
// Install cdmdotnet.StateManagement as a Cake Addin
#addin nuget:?package=cdmdotnet.StateManagement&version=3.0.4.3

// Install cdmdotnet.StateManagement as a Cake Tool
#tool nuget:?package=cdmdotnet.StateManagement&version=3.0.4.3

cdmdotnet.Logging is an abstracted state mangement platform for .NET. It can help you by providing a consistent abstraction over all the different collection for your application regardless of its size or complexity with minimal performance implications.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (12)

Showing the top 5 NuGet packages that depend on cdmdotnet.StateManagement:

Package Downloads
cdmdotnet.Logging The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This logging library makes large use of enterprise correlation. In a lot of applications that incorporate various small and large services, it is often important to correlate events that happen across these services. It gives us a business workflow view of the various events that happen in the application, its components and services. This library provide operation and activity ID management and propagation. The main difference with this library over other is that you can configure each type of log separately. You can enable fatal, error, warning, debugging, informational, progress and sensitive data logging all independently of each other. This is more flexible than the concept of minimum level logging, such as that in log4net or serilog e.g. enabling one warning in this libraries will enable error and fatal logging as well. This library allows you to set those settings independently of each other. The SqlLogger maps AdditionalData to table columns, where the key of the dictionary entry is the column name and the value is serialised to JSON as the column value. MetaData is serialised to a single JSON value stored in the MetaData column. This means you can store data such as a User ID or Job ID in a separate column so you can filter more efficiently with indexes and partitions. TraceLogger and ConsoleLogger both seralise and format all information into a single string. The MultiLogger allows you to configure several different loggers to be used at once with different settings for each logger. Usage is in the form of: static void Main() {   ICorrelationIdHelper correlationIdHelper = new WebCorrelationIdHelper();   // This value will be set automatically to all logs within this thread... so long as System.Threading.Tasks.Task.Factory.StartNew is used.   correlationIdHelper.SetCorrelationId(Guid.NewGuid());   DoSyncWork();   DoAsyncWork(); } static void DoSyncWork() {   ILogger logger = new SqlLogger();   logger.LogDebug("Some technical debugging details."); } static void DoAsyncWork() {   System.Threading.Tasks.Task.Factory.StartNew(() => {     ILogger logger = new ConsoleLogger();     logger.LogInfo("An informative message.");   }); } This package installs cdmdotnet.Logging.dll with includes core logging functionality. Other packages depend on cdmdotnet.Logging for specific implementations.

Cqrs.Mongo

Use MongoDB as the read store and data store in CQRS.NET

Cqrs.Azure.DocumentDb

Use Azure Cosmos DB (DocumentDB) as an event store, read store and data store in CQRS.NET

Cqrs.Ninject.Mongo

Use Ninject as your IoC container of choice with MongoDB for CQRS.NET

Cqrs.Ninject.Azure.DocumentDb

Use Ninject as your IoC container of choice with Microsoft Azure DocumentDB for CQRS.NET

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.13.9 86,559 4/18/2017
3.0.11.8 944 4/13/2017
3.0.9.7 115,270 1/24/2017
3.0.8.6 980 1/24/2017
3.0.8.5 954 1/23/2017
3.0.6.4 3,113 1/23/2017
3.0.4.3 1,255 5/16/2016
3.0.3.2 1,216 5/16/2016