36 packages tagged with “Binder”
Creates objects from IConfiguration and IConfigurationSection objects. A replacement for some of the functionality of Microsoft.Extensions.Configuration.Binder.
An explicit json model binder to allow json serialized parts in for example a multipart-formdata request of a .Net-Core controller action.
A Ninject Binder for ASP.Net MVC
Extends the Microsoft.Extensions.Configuration.Binder code to support discriminator based inheritance
MVB Core Model View Binder - A small and robust framework for awesome cross platform architectures
Bind Cake arguments to classes via Attributes
Adds ability to support aliases for model binding. Set action parameter to "product" and place "productid" on querystring. i.e. public ActionResult Index([Alias("pid"]Product product) ... add global filter ... filters.Add(new AliasInitializer());
Newtonsoft.Json known types serialization binder
A simple view model binder
Steeltoe Stream RabbitMQ Binder.
Bind System.CommandLine input to an object model with explicit and convention-based property maps.
A System.CommandLine.PropertyMapBinder extension for mapping console input to properties by simple naming conventions
Provides additional functionality related to automatically binding strongly typed options to data in configuration providers.
Simple StoredProcedure Binder in a type safe way. This generates class codes to call stored procedures.
Simple both fromuri and frombody model binder for Asp.NET Web API
A tool for binding controls, variables and typed event handlers to custom Settings classes.
Simple StoredProcedure Binder in a type safe way.
Contains claim model binders for ASP.NET Core MVC.
MVB Platform WPF UWP platform specific runner for WPF
MVB Platform iOS iOS platform specific runner for MVB
Enables binding a controller method parameter from a claim value by name.
MVB Platform WinForms UWP platform specific runner for Windows Forms
Enables binding a controller method parameter from a cookie value by name.
MVB Platform Droid Android platform specific runner for MVB
MVB Platform MacOS MacOs platform specific runner for MVB
StringValues binder.
🧬 One-touch unmanaged memory, libraries, executable modules, runtime dynamic use of the unmanaged native C/C++ in .NET world, related P/Invoke features, and ... Even accessing to complex types like structures without their declaration at all. ## Why Conari ? It was designed to be loyal to your needs on the fly! 🧰 Powerful types ``` using dynamic l = new ConariX("regXwild.dll"); string data = "number = 888;"; bool found = l.replace<bool>(ref data, "+??;", "2034;"); // found: true; data: number = 2034; ``` 🔨 Its amazing DLR features Conari will generate and adapt everything at runtime! Specially for you! 🔧 The easiest (most ever) access to any data in unmanaged memory ``` ptr.Native().f<int>("x", "y").build(out dynamic l); l.x // 17 l.y // -23 ``` 🏄 Most powerful PInvoke and even most convenient use of WinAPI without preparing something For example, below we don't provide neither *user32.ShowWindow()* nor *user32.MessageBoxA(),* even no *kernel32.GetModuleHandleA/W()* ``` dynamic user32 = new User32(); user32.ShowWindow(0x000A0A28, 3); user32.MessageBoxA(0, "Conari in action", "Hello!", 0); ``` 🚀 Awesome speed test of regXwild's algorithms [[340x10000 Unicode](https://github.com/3F/regXwild#speed)] 🍰 MIT License! Enjoy. . . . Read more: https://github.com/3F/Conari _ _ _ _ _ _ ======================================= gnt /p:ngpackages="Conari/1.5.0" ================== https://github.com/3F/GetNuTool Conari 1.5.0.63141+ba1a82e Configuration: PublicRelease Platforms: net40;net472;netcoreapp2.1;net5;netstandard2.0;netstandard2.1 :: generated by a vsSolutionBuildEvent 1.14.1.34071
A polymorphic model binder for ASP.NET Core.
Sqleze aims to make it easy to bind SQL queries to C#. The columns returned from your SQL query can be mapped to standard classes, C# records, or object dictionary. Binds C# objects to scalar (normal) and table-valued parameters. Column names can be mapped verbatim or via a naming convention. Your query can return multiple rowsets. Supports reading output parameters via lambda functions. Automatic transaction handling. Avoids query cache pollution by specifying parameter sizes explicitly. Highly fluent and extensible API. BUT - does not write the SQL for you.