5 packages tagged with “Apply”
Package Description
Extension methods for object-object or dictionary-object or datatable-object mapping, single item mapping use [ item.Apply(()=>new { .. }); ],multiple array items mapping use [ items.Apply(a=>new { .. }); ]. Extension methods for SQL Window Function in Linq, use [ items.GroupBy(a =>...).AsPartition(p=> p.OrderBy(a=>...)).Over(p=>...); ],can also be customize function.
Scope functions Map, Apply, ApplyForEach and ApplyForEachEager. They apply passed functions to a given object and return that same object or it's equivalent (or function return for Map), allowing you to have seamless side-effects and manipulate objects in fluent invocation chains or object iniatlizers, i.e. GetConfig().Apply(changes).Build()
DotStuff – A few helpful extensions for method chaining in C#