Search for netfx returned 151 packages
Displaying results 21 - 40.
-
NETFx IDictionary<TKey, TValue>.GetOrAdd Extension Method
By:
Provides the GetOrAdd extension method for generic dictionaries, borrowed from the ConcurrentDictionary class.
-
NETFx Linq Expression Combiner
By:
Allows combining linq expressions using logic operators And, AndAlso, Or and OrElse. Compatible with Entity Framework, NHibernate and Linq to SQL query providers. See http://kzu.to/iT3X73 for more information.
-
NETFx HttpNameValueCollection
By:
A simpler NameValueCollection-derived class that uses HTTP query string semantics and renders to a query string when ToString is invoked.
-
NETFx Smart String Resources
By:
Suplements the built-in Resources .resx C# generator by generating a strong-typed class named Strings from the same .resx file, but exposing format parameters as method parameters and organizing strings in classes according to the resource name if it uses underscores. i.e. User_InvalidCredentials can be accessed with Strings.User.InvalidCredentia... More information
-
NETFx XmlSerializer<T>
By:
Provides a generics version of XmlSerializer.
-
NETFx Type Inheritance Tree
By:
Allows inspecting the exact type inheritance tree as declared in source, rather than the flattened view that reflection provides (for implemented interfaces, for example). Enables code to determine what are the interfaces implemented directly by a type rather than a base class, as well as determine the "distance" in the hierarchy to those implemen... More information
-
NETFx WebApi IQueryable Service
By:
Provides support for client-side paging (TotalCount header) and server-side query limits for services that expose IQueryable<T> resources.
-
NETFx Filtering Reflection Catalog
By:
Provides dinamic filtering of parts and exports from an underlying reflection-based catalog using a simple lambda expression that can inspect the export, its metadata and its exporting reflected type (part). Example: var filtered = new FilteringReflectionCatalog(innerCatalog) { // Filter all parts that don't have an "IsPublic" metadata PartFilte... More information
-
NETFx DelegateCommand
By:
An implementation of WPF ICommand that allows passing delegates/lambdas for the implementation.
-
NETFx Stream.WriteTo Extension Method
By:
Copies an arbitrary stream to another stream or an output file (buffered).
-
NETFx Patterns: Event Sourcing Store for Entity Framerwork
By:
Implements an event store using Entity Framework, with event payloads persisted using the configured serializer.
-
NETFx Thread Data<T>
By:
Provides strong-typed persistence of data in Thread local storage, which can also be transient and automatically removed on dispose. Usage: Thread.CurrentThread.SetData<Foo>(foo); var saved = Thread.CurrentThread.GetData<Foo>();
-
NETFx IEnumerable<T>.EmptyIfNull Extension Method
By:
Hate checking for nulls in Linq queries? Turn any null enumerable into an empty one as needed! var id = schema.Elements.EmptyIfNull().FirstOrDefault(x => x == "Id")
-
NETFx HttpEntityConventionClient
By:
Strong-typed Linq to Web API with resource names conventions. Builds on top of HttpEntityClient and HttpClient and provides the easiest way to interface with typed REST services that are modeled around typed entities or contracts. Example: var products = client // Note: resource path inferred from Product type .Query<Product>() .OrderBy(x => x.... More information
-
NETFx CovariantExtensions
By:
Provides extension methods that allow to treat collections, enumerables and lists as covariant of a generic type other than their constructed type (i.e. for down-casting collections).
-
NETFx KeyValuePair.Create
By:
Provides the missing KeyValuePair.Create static method, following the same approach as the Tuple.Create one to avoid having to type the generic argument parameters and leverage type inference instead: i.e. KeyValuePair.Create("max", 25) creates a KeyValuePair<string, int>.
-
NETFx ServiceProvider Generics Extension Methods
By:
Generic overloads to System.IServiceProvider.GetService.
-
NETFx: Reactive Event Stream (interface + implementation)
By:
Provides a reactive extensions event stream, allowing trending and analysis queries to be performed in real-time over the events pushed through the stream.
-
NETFx Patterns: Event Sourcing
By:
Provides the core APIs to implement the event sourcing pattern and an application event bus.
-
NETFx xUnit-like assertion for MSTest.
By:
Use code snippet 'assertion' to get the declaration at the top of the file. Then just use Assert.Equal(...) and the like.