Top "Valueinjecter" questions

ValueInjecter lets you define your own convention-based matching algorithms (ValueInjections) in order to match up (inject) source values to destination values.

AutoMapper vs ValueInjecter

Everytime I'm looking for AutoMapper stuff on StackOverflow, I'm reading something about ValueInjecter. Can somebody tell me the pros and …

c# .net automapper valueinjecter object-object-mapping
Which is faster: Automapper, Valuinjector, or manual mapping? To what degree is each one faster?

Suppose I have this object in my DAL (ORM etc) public class Student { public string Name {get;set;} public string …

c# .net automapper valueinjecter emitmapper
Checking for IEnumerable<T> with reflection

EDIT The bare-bones version of this question is, if I have some object o, how would I check to see …

c# reflection valueinjecter
Successful Model Editing without a bunch of hidden fields

In Short: How do I successfully edit a DB entry without needing to include every single field for the Model …

asp.net-mvc viewmodel model-binding valueinjecter
How to loop through a HashSet<T> when it is provided as an object and the T can be anything?

I'm using Value Injecters to map from 1 type to another using the LoopValueInjection and overriding the SetValue(object v) method …

c# reflection valueinjecter
How to map lists with ValueInjector

I am using ASP.NET MVC 3. Can someone please help me clarify what's happening here: var person = new PersonRepository().Get(); …

asp.net asp.net-mvc asp.net-mvc-3 valueinjecter
Map string to enum with Automapper

My problem is hydrating a Viewmodel from a Linq2Sql object that has been returned from the database. We have …

asp.net-mvc enums viewmodel automapper valueinjecter