cdmdotnet
NuGet publisher profile
Packages (72)
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.
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.
cdmdotnet.Performance
cdmdotnet.Performance
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.
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.
Cqrs.Mongo
Use MongoDB as the read store and data store in CQRS.NET
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.
Manatee.Trello
A fully object-oriented .Net wrapper for the TrelloAPI.
Cqrs.Azure.ConfigurationManager
Use Azure Configuration Manager as the configuration manager in CQRS.NET
Cqrs.Azure.ServiceBus
Use Azure ServiceBus as a message, event or command bus in CQRS.NET
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.
Cqrs.EventStore
Use Greg Young's event store as the Event Store in CQRS.NET
Cqrs.Ninject.EventStore
Use Ninject as your IoC container of choice with Greg Young's Event Store for 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.ServiceBus.CommandBus
Use Ninject as your IoC container of choice when using Microsoft Azure ServiceBus for CQRS.NET as your command bus
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
Cqrs.Ninject.InProcess.CommandBus
Deprecated. Use the Cqrs.Ninject package instead.
Cqrs.Ninject.Azure.DocumentDb
Use Ninject as your IoC container of choice with Microsoft Azure DocumentDB for CQRS.NET
Cqrs.Ninject.InProcess.EventBus
Deprecated. Use the Cqrs.Ninject package instead.
Cqrs.Ninject.InProcess.EventStore
Deprecated. Use the Cqrs.Ninject package instead.
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.
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.
Cqrs.Ninject.ServiceHost
Use Ninject as your IoC container of choice to use WCF with CQRS.NET as ServiceHosts
_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.
cdmdotnet.AutoMapper
A lightweight framework for automatically mapping values from one class to another.
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).
Cqrs.Akka
Use Akka.NET actors in CQRS.NET
Cqrs.Ninject.Azure.Wcf
Use Ninject as your IoC container of choice with Microsoft WCF for CQRS.NET
Cqrs.Ninject.Akka
Use Ninject as your IoC container of choice with Akka.Net for CQRS.NET
Chinchilla.Logging.Azure.ApplicationInsights
Telemetry via Azure application insights for Simple Logging .NET and .NET Core.
Cqrs.Ninject.Azure.WebJobs
Use Ninject as your IoC container of choice with Microsoft WebJobs for CQRS.NET
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.
cdmdotnet.Logging.Azure
Settings for using Simple Logging For .net on the Azure platform.
Cqrs.WebApi
Package Description
_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.
Cqrs.Azure.WebJobs
Use Azure Webjobs with CQRS.NET
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
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
Cqrs.Azure.EventHub
Use Azure EventHubs as a message, event or command bus in CQRS.NET
Cqrs.Ninject.WebApi
Use Ninject as your IoC container of choice with WebAPI and CQRS.NET
Cqrs.Web.Mvc
Package Description
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
cdmdotnet.Logging.Azure.ApplicationInsights
Telemetry via Azure application insights for Simple Logging For .net
cdmdotnet.Logging.Sql
A SqlServer implementation for cdmdotnet.Logging. Use the CreateTable() method to create the table you require.
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
Chinchilla.Logging.Azure.Storage
Azure storage for using Simple Logging For .NET and .NET Core on the Azure platform.
Cqrs.MongoDB
Use MongoDB as the read store and data store in CQRS.NET
Cqrs.DependencyInjection
Use DI with CQRS.NET
Cqrs.Ninject.Azure.BlobStorage
Use Ninject as your IoC container of choice with Microsoft Azure Blob Storage for CQRS.NET
Cqrs.Ninject.MongoDB
Use Ninject as your IoC container of choice with MongoDB for CQRS.NET
Cqrs.Azure.ServiceBusHub
Use Azure EventHubs as a message, event or command bus in CQRS.NET
cdmdotnet.Logging.Serilog
Serilog logger implementation of Simple Logging For .net.
Cqrs.Scheduler.Commands
Commands used by the CQRS.NET Scheduler
Cqrs.Scheduler.Events
Events used by the CQRS.NET Scheduler
Cqrs.Azure.Functions.Isolated
Use Azure Functions with CQRS.NET
Cqrs.Azure.Functions
Use Azure Functions with CQRS.NET
Chinchilla.Logging.Serilog
Serilog logger implementation for Simple Logging .NET and .NET Core.
Chinchilla.ClickUp
C# / .NET / .NET Core library for manage in easy way the ClickUp API V2.
Cqrs.Azure.Functions.ServiceBus.Isolated
Use Azure Functions with CQRS.NET
Cqrs.Azure.Functions.ServiceBus
Use Azure Functions with CQRS.NET
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
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
Cqrs.Ninject.InProcess
Components for implementing I.O.C. requirements via Ninject for in-process the event and command bus.
Manatee.Trello.CustomFields
Custom Fields powerup implementation for Manatee.Trello
Cqrs.Ninject.Azure.Storage
Use Ninject as your IoC container of choice with Microsoft Azure Blob and Table Storage for CQRS.NET
Cqrs.Azure.KeyVault
Use Azure KeyVault for access to secrets and keys in CQRS.NET
Cqrs.DependencyInjection.Azure.Storage
Use MS DI as your IoC container of choice when using Azure Blob and Table Storage in CQRS.NET.
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 .
_Atlassian.SDK
Utilities to interact with Atlassian products. Contains LinqToJira provider for querying JIRA Issue tracker (http://www.atlassian.com/software/jira).
cdmdotnet.Performance.Web
cdmdotnet.Performance.Web
cdmdotnet.Performance.Web.Mvc
cdmdotnet.Performance.Web.Mvc