Skip to main content
cdmdotnet avatar

cdmdotnet

NuGet publisher profile

Packages
72
Total Downloads
25.5M
25,518,563

Packages (72)

cdmdotnet.Logging package icon

cdmdotnet.Logging

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.

9.6M
downloads
Cqrs package icon

Cqrs

A lightweight enterprise Function as a service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments, offering modern patterns such as CQRS and event-sourcing. Offering a superior combination of serverless, micro-service and traditional deployments both in the cloud and on-premise to suit any business. Deployments can be inter-conntected with each other sharing data and resourcing or independant and issolated while providing a consistent framework and guideline for both development, deployment, DevOps and administration. CQRS.NET has been designed with modularity in mind... see the number of technology packages below you can chose from. Modularity applies to both development concerns like storage as well as operational modularity such as serverless or micro-service deployment, PaaS, VMs or container packaging. Every package and design choice made should be interchangeable with custom code if needed.

2.8M
downloads
cdmdotnet.Performance package icon

cdmdotnet.Performance

cdmdotnet.Performance

793.1K
downloads
Chinchilla.Logging package icon

Chinchilla.Logging

Chinchilla.Logging is a .NET Core port of cdmdotnet.Logging, an abstracted logging platform for .NET. It can help you collect reliable logs for your application regardless of its size or complexity with minimal performance implications. 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. EventLogger, 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. See https://github.com/cdmdotnet/logging/wiki/Quick-How-To for usage details. This package installs Chinchilla.Logging.dll which includes core logging functionality. Other packages depend on Chinchilla.Logging for specific implementations.

686.2K
downloads
Cqrs.Ninject package icon

Cqrs.Ninject

Provides preconfigured Ninject modules that will wire up the required component necessary. Several modules are optional such as the InProcess or the SimplaifySQL modules. You only need to use those if you are using InProcess or SQL.

633.9K
downloads
Cqrs.Mongo package icon

Cqrs.Mongo

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

629.1K
downloads
Cqrs.Modelling package icon

Cqrs.Modelling

A visual designer for the lightweight CQRS.net framework. Using this package you can generate much of the boiler plate code involved in implementing a scalable, enterprise grade CQRS project ready for deployment on-premise or on Azure.

625.1K
downloads
Manatee.Trello package icon

Manatee.Trello

A fully object-oriented .Net wrapper for the TrelloAPI.

581.5K
downloads
Cqrs.Azure.ConfigurationManager package icon

Cqrs.Azure.ConfigurationManager

Use Azure Configuration Manager as the configuration manager in CQRS.NET

552.7K
downloads
Cqrs.Azure.ServiceBus package icon

Cqrs.Azure.ServiceBus

Use Azure ServiceBus as a message, event or command bus in CQRS.NET

534.9K
downloads
Chinchilla.StateManagement package icon

Chinchilla.StateManagement

Chinchilla.StateManagement is a .NET Core port of cdmdotnet.StateManagement, a C# state management framework that provides a consistent abstraction for accessing data from various collections such as thread bound contexts, HTTP Request and Response collections as well as HTTP Cookies.

533.8K
downloads
Cqrs.EventStore package icon

Cqrs.EventStore

Use Greg Young's event store as the Event Store in CQRS.NET

533.3K
downloads
Cqrs.Ninject.EventStore package icon

Cqrs.Ninject.EventStore

Use Ninject as your IoC container of choice with Greg Young's Event Store for CQRS.NET

454.1K
downloads
Cqrs.Azure.DocumentDb package icon

Cqrs.Azure.DocumentDb

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

446.2K
downloads
Cqrs.Ninject.Mongo package icon

Cqrs.Ninject.Mongo

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

445.8K
downloads
Cqrs.Ninject.Azure.ServiceBus.CommandBus package icon

Cqrs.Ninject.Azure.ServiceBus.CommandBus

Use Ninject as your IoC container of choice when using Microsoft Azure ServiceBus for CQRS.NET as your command bus

423.5K
downloads
Cqrs.Ninject.Azure.ServiceBus.EventBus package icon

Cqrs.Ninject.Azure.ServiceBus.EventBus

Use Ninject as your IoC container of choice when using Microsoft Azure ServiceBus for CQRS.NET as your event bus

417.7K
downloads
Cqrs.Ninject.InProcess.CommandBus package icon

Cqrs.Ninject.InProcess.CommandBus

Deprecated. Use the Cqrs.Ninject package instead.

383.8K
downloads
Cqrs.Ninject.Azure.DocumentDb package icon

Cqrs.Ninject.Azure.DocumentDb

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

369.2K
downloads
Cqrs.Ninject.InProcess.EventBus package icon

Cqrs.Ninject.InProcess.EventBus

Deprecated. Use the Cqrs.Ninject package instead.

343.7K
downloads
Cqrs.Ninject.InProcess.EventStore package icon

Cqrs.Ninject.InProcess.EventStore

Deprecated. Use the Cqrs.Ninject package instead.

338.4K
downloads
Cqrs.Sql package icon

Cqrs.Sql

The built-in, Sql Store in the CQRS.NET cannot process non-primitive properties on the entity classes in read stores and data stores. If your entity classes require more comp[lexity than just basic, flat primitive property structures, this package will allow you to use Microsoft SqlServer as an read store and data store in CQRS.NET allowing you to build custom converters to provide mappings from your entities to you SQL table schema structures.

272.5K
downloads
cdmdotnet.StateManagement package icon

cdmdotnet.StateManagement

C# State Management provides a consistent abstraction to accessing data from various collections such as thread bound contexts, HTTP Request and Response collections as well as HTTP Cookies.

240.6K
downloads
Cqrs.Ninject.ServiceHost package icon

Cqrs.Ninject.ServiceHost

Use Ninject as your IoC container of choice to use WCF with CQRS.NET as ServiceHosts

226.4K
downloads
_EnterpriseLibrary.Azure.TransientFaultHandling.ServiceBus.NetCore package icon

_EnterpriseLibrary.Azure.TransientFaultHandling.ServiceBus.NetCore

A port of EnterpriseLibrary.TransientFaultHandling.ServiceBus for .Net Core The Transient Fault Handling Application Block for Windows Azure ("Topaz") makes your Windows Azure application more resilient to transient failures by providing intelligent retry logic mechanisms.

191.7K
downloads
cdmdotnet.AutoMapper package icon

cdmdotnet.AutoMapper

A lightweight framework for automatically mapping values from one class to another.

179.9K
downloads
MYOB.AccountRight.API.SDK.Core package icon

MYOB.AccountRight.API.SDK.Core

A .NET CORE library SDK wrapper around the MYOB AccountRight API v2. Samples of how to use this API can be found on Github (MYOB-Technology).

145.4K
downloads
Cqrs.Akka package icon

Cqrs.Akka

Use Akka.NET actors in CQRS.NET

145.3K
downloads
Cqrs.Ninject.Azure.Wcf package icon

Cqrs.Ninject.Azure.Wcf

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

131.9K
downloads
Cqrs.Ninject.Akka package icon

Cqrs.Ninject.Akka

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

126.4K
downloads
Chinchilla.Logging.Azure.ApplicationInsights package icon

Chinchilla.Logging.Azure.ApplicationInsights

Telemetry via Azure application insights for Simple Logging .NET and .NET Core.

117.0K
downloads
Cqrs.Ninject.Azure.WebJobs package icon

Cqrs.Ninject.Azure.WebJobs

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

108.4K
downloads
Chinchilla.Logging.Azure package icon

Chinchilla.Logging.Azure

Settings for using Simple Logging For .NET and .NET Core on the Azure platform. See https://github.com/cdmdotnet/logging/wiki/Quick-Azure-How-To for usage details.

106.6K
downloads
cdmdotnet.Logging.Azure package icon

cdmdotnet.Logging.Azure

Settings for using Simple Logging For .net on the Azure platform.

89.0K
downloads
Cqrs.WebApi package icon

Cqrs.WebApi

Package Description

80.9K
downloads
_SquaredUp.HubSpot.NET package icon

_SquaredUp.HubSpot.NET

C# .NET Wrapper around the common HubSpot APIs. This is a fork/continuation of the original project that now appears not to be maintained.

80.8K
downloads
Cqrs.Azure.WebJobs package icon

Cqrs.Azure.WebJobs

Use Azure Webjobs with CQRS.NET

79.8K
downloads
Cqrs.Ninject.Azure.EventHub.EventBus package icon

Cqrs.Ninject.Azure.EventHub.EventBus

Use Ninject as your IoC container of choice when using Microsoft Azure Event hubs for CQRS.NET as your event bus

76.0K
downloads
Cqrs.Ninject.Azure.EventHub.CommandBus package icon

Cqrs.Ninject.Azure.EventHub.CommandBus

Use Ninject as your IoC container of choice when using Microsoft Azure Event hubs for CQRS.NET as your command bus

74.8K
downloads
Cqrs.Azure.EventHub package icon

Cqrs.Azure.EventHub

Use Azure EventHubs as a message, event or command bus in CQRS.NET

72.6K
downloads
Cqrs.Ninject.WebApi package icon

Cqrs.Ninject.WebApi

Use Ninject as your IoC container of choice with WebAPI and CQRS.NET

51.8K
downloads
Cqrs.Web.Mvc package icon

Cqrs.Web.Mvc

Package Description

51.4K
downloads
Cqrs.Azure.Storage package icon

Cqrs.Azure.Storage

Use Azure Blob and Table Storage as the read store and data store in CQRS.NET. This version is targeted at .net 4.7.2 using Azure.Data.Tables and Azure.Storage.Blobs version 12

49.9K
downloads
cdmdotnet.Logging.Azure.ApplicationInsights package icon

cdmdotnet.Logging.Azure.ApplicationInsights

Telemetry via Azure application insights for Simple Logging For .net

45.6K
downloads
cdmdotnet.Logging.Sql package icon

cdmdotnet.Logging.Sql

A SqlServer implementation for cdmdotnet.Logging. Use the CreateTable() method to create the table you require.

45.6K
downloads
Cqrs.Azure.BlobStorage package icon

Cqrs.Azure.BlobStorage

Use Azure Blob and Table Storage as the read store and data store in CQRS.NET. This version is targeted at .net 4.0 using WindowsAzure.Storage version 7.2.1

43.5K
downloads
Chinchilla.Logging.Azure.Storage package icon

Chinchilla.Logging.Azure.Storage

Azure storage for using Simple Logging For .NET and .NET Core on the Azure platform.

42.6K
downloads
Cqrs.MongoDB package icon

Cqrs.MongoDB

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

36.8K
downloads
Cqrs.DependencyInjection package icon

Cqrs.DependencyInjection

Use DI with CQRS.NET

36.7K
downloads
Cqrs.Ninject.Azure.BlobStorage package icon

Cqrs.Ninject.Azure.BlobStorage

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

34.0K
downloads
Cqrs.Ninject.MongoDB package icon

Cqrs.Ninject.MongoDB

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

32.1K
downloads
Cqrs.Azure.ServiceBusHub package icon

Cqrs.Azure.ServiceBusHub

Use Azure EventHubs as a message, event or command bus in CQRS.NET

31.7K
downloads
cdmdotnet.Logging.Serilog package icon

cdmdotnet.Logging.Serilog

Serilog logger implementation of Simple Logging For .net.

29.6K
downloads
Cqrs.Scheduler.Commands package icon

Cqrs.Scheduler.Commands

Commands used by the CQRS.NET Scheduler

25.9K
downloads
Cqrs.Scheduler.Events package icon

Cqrs.Scheduler.Events

Events used by the CQRS.NET Scheduler

25.6K
downloads
Cqrs.Azure.Functions.Isolated package icon

Cqrs.Azure.Functions.Isolated

Use Azure Functions with CQRS.NET

22.0K
downloads
Cqrs.Azure.Functions package icon

Cqrs.Azure.Functions

Use Azure Functions with CQRS.NET

21.7K
downloads
Chinchilla.Logging.Serilog package icon

Chinchilla.Logging.Serilog

Serilog logger implementation for Simple Logging .NET and .NET Core.

21.4K
downloads
Chinchilla.ClickUp package icon

Chinchilla.ClickUp

C# / .NET / .NET Core library for manage in easy way the ClickUp API V2.

20.5K
downloads
Cqrs.Azure.Functions.ServiceBus.Isolated package icon

Cqrs.Azure.Functions.ServiceBus.Isolated

Use Azure Functions with CQRS.NET

18.8K
downloads
Cqrs.Azure.Functions.ServiceBus package icon

Cqrs.Azure.Functions.ServiceBus

Use Azure Functions with CQRS.NET

18.7K
downloads
Cqrs.DependencyInjection.Azure.ServiceBus.EventBus package icon

Cqrs.DependencyInjection.Azure.ServiceBus.EventBus

Use MS DI as your IoC container of choice when using Microsoft Azure ServiceBus for CQRS.NET as your event bus

18.2K
downloads
Cqrs.DependencyInjection.Azure.ServiceBus.CommandBus package icon

Cqrs.DependencyInjection.Azure.ServiceBus.CommandBus

Use MS DI as your IoC container of choice when using Microsoft Azure ServiceBus for CQRS.NET as your command bus

17.5K
downloads
Cqrs.Ninject.InProcess package icon

Cqrs.Ninject.InProcess

Components for implementing I.O.C. requirements via Ninject for in-process the event and command bus.

16.5K
downloads
Manatee.Trello.CustomFields package icon

Manatee.Trello.CustomFields

Custom Fields powerup implementation for Manatee.Trello

12.6K
downloads
Cqrs.Ninject.Azure.Storage package icon

Cqrs.Ninject.Azure.Storage

Use Ninject as your IoC container of choice with Microsoft Azure Blob and Table Storage for CQRS.NET

11.7K
downloads
Cqrs.Azure.KeyVault package icon

Cqrs.Azure.KeyVault

Use Azure KeyVault for access to secrets and keys in CQRS.NET

11.2K
downloads
Cqrs.DependencyInjection.Azure.Storage package icon

Cqrs.DependencyInjection.Azure.Storage

Use MS DI as your IoC container of choice when using Azure Blob and Table Storage in CQRS.NET.

8.5K
downloads
Xero.API.SDK.Notes package icon

Xero.API.SDK.Notes

This is a .NET SDK library, written in C#, that extends the core SDK to provide support for https://developer.xero.com/documentation/api/history-and-notes .

4.8K
downloads
_Atlassian.SDK package icon

_Atlassian.SDK

Utilities to interact with Atlassian products. Contains LinqToJira provider for querying JIRA Issue tracker (http://www.atlassian.com/software/jira).

4.1K
downloads
cdmdotnet.Performance.Web package icon

cdmdotnet.Performance.Web

cdmdotnet.Performance.Web

3.3K
downloads
cdmdotnet.Performance.Web.Mvc package icon

cdmdotnet.Performance.Web.Mvc

cdmdotnet.Performance.Web.Mvc

3.3K
downloads