Top 20 NuGet Packages
Strong-typed Linq to Web API. Builds on top of HttpClient and provides the easiest way to interface with typed REST services that are modeled around typed entities or contracts.
Example:
var products = client
.Query<Product>("products")
.OrderBy(x => x.Downloads)
.Skip(25)
.Take(25)
.ToList();
Implements the core NETFx ISerializer interface using a Json.NET serializer.
Provides a command registry that executes commands with registered command handlers. Typically used in CQRS-style arquitectures.
Implements the Domain Context pattern for EntityFramework 4.1, by extending the DbContext with support for rich domain modeling capabilities for persistence ignorant aggregate roots and dependent entities, including automatic graph saving, logical deletes and more.
xUnit tests for netfx-Patterns.DomainContext.EF
xUnit tests for netfx-Patterns.EventSourcing.AutoWire
Useful for testing domains that leverage event sourcing
xUnit tests for netfx-Patterns.EventSourcing.InMemory
Simple example of a domain object with logic that leverages event sourcing.
xUnit tests for netfx-Patterns.EventSourcing.EF
xUnit tests for netfx-Patterns.EventSourcing.Queryable
xUnit tests for netfx-Patterns.EventSourcing
xUnit tests for netfx-Patterns.MessageStore
Implements a very simple unoptimized store for the file system.
Copies an arbitrary stream to another stream or an output file (buffered).
Readable formatting strings using named parameters and a custom or anonymous object as the context, like "Hello {FirstName} {LastName}".FormatWith(customer).
Tests for netfx-System.TypeInheritance
Provides the implementation of a reactive extensions event stream, allowing trending and analysis queries to be performed in real-time over the events pushed through the stream.
xUnit tests for netfx-System.Reactive.EventStream.Implementation