The valueinjecter tag has no wiki summary.
0
votes
2answers
23 views
Specify more than one rule in ValueInjecter's ConventionInjection(s)
I'm new to ValueInjecter. I knew how to match properties with the same name but different caps:
public class IgnoreCaseInjection : ConventionInjection
{
protected override bool ...
0
votes
1answer
14 views
ValueInjecter injecting between models with same property names
I am trying to inject properties from ProductCategoryViewModel, which has Title and Id properties into ProductViewModel, which also has Title and Id properties (but for Product) and ...
1
vote
1answer
28 views
QueryableExtensions for ValueInjecter
Does anything like QueryableExtensions for Automapper exist for ValueInjecter?
For those unfamiliar with this functionality it allows for the automatic projection of properties to be performed for ...
0
votes
1answer
31 views
Using ValueInjecter, can I inject into private properties?
Is there any Injection in ValueInjecter that injects into private properties?
1
vote
1answer
44 views
ValueInjecter to ignore cases when mapping properties
For example, I want to map property Foo.ID to Bar.Id, is it possible?
0
votes
0answers
19 views
ValueInjecter: Delimited Unflat Injection
I've been using an UnflatLoopValueInjection to transfer settings into a vendor product (which is relevant only because it means I don't have control over the property names). For example (using ...
1
vote
1answer
54 views
Trouble loading a child model in MVC 4
I have an OrderViewModel that includes an instance of a child _DetailsViewModel. The OrderViewModel has order header information and the _DetailsViewModel holds order detail information. Despite being ...
3
votes
2answers
74 views
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 with some custom logic. I am trying to detect when a HashSet is being ...
0
votes
0answers
73 views
Mapping between presentation model and domain model 1:n
I need mapping between presentation and domain model for C#. I know that there are several mapping library, but it seems to me that none of them achieve the following requirement:
1:n mapping:
One ...
0
votes
1answer
187 views
Use ValueInjecter to copy an EntityFramework POCO to a DTO without triggering lazy load lists and properties
I am having an issue with using ValueInjecter to create deep clones of EntityFramework POCO's into similar DTO classes.
In cases where I am injecting from a complicated POCO object with multiple ...
-1
votes
2answers
93 views
MVC ViewModel approaches and mapping. Best approach
I've been looking at the different approaches to solving the mass assignment issues with MVC as well as doing things the right way.
So far, the 2 approaches which I think are the best are below: (I ...
0
votes
0answers
46 views
Update This Extension to Handle FlatLoopValueInjection
I found this code on stackoverflow but I noticed it can't handle FlatLoopValueInjection and I would like to make it handle this but I can't figure out how.
public static ICollection<TTo> ...
0
votes
1answer
28 views
Is there a signed version of ValueInjecter that I can GAC?
Is there a signed version of ValueInjecter that I can GAC? I need a version that is strong named so that it can be GAC'ed.
1
vote
0answers
59 views
Object-object mapper for Windows Store apps
Is there an object-to-object mapping library that works with Windows Store apps?
Neither Automapper nor ValueInjecter seems to support Windows RT yet.
1
vote
1answer
89 views
ValueInjecter - converting some properties of source into a list in target
Just started using Value Injector: http://valueinjecter.codeplex.com/, and I have a question:
I have a Source class that has many properties. Some properties have a common suffix of "Profile". These ...
2
votes
1answer
86 views
Flattening with ValueInjecter
I try to map multiple objects to a view model object with ValueInjecter. But it does not work as I expect it.
Code:
class Call
{
public string Number { get; set; }
public string ...
1
vote
3answers
173 views
EF4 var object mapping to DTO using valueinjecter
I have linQ query like the one below
var records = (from P in Person
join B in BankAccount
on P.ID equals B.PersonID
select new { P, B}).ToList();
...
0
votes
1answer
63 views
ValueInjecter and ICollection(Of ViewModel)
I have two simple viewmodels which are related. I can query the data via an linq include statement, but when i inject it into the viewmodel the icollection is nothing?
Viewmodels:
Public Class ...
2
votes
1answer
173 views
ValueInjector Stack Overflow on mapping entities with parent entities
I am using ValueInjecter to handle mapping my POCO entities to my DTO entities. I have been using Automapper Simulation as my main mapper. This allows me to simply write a mapping like this:
var ...
2
votes
2answers
197 views
How to prevent values in “Target” object being overwritten by nulls from “Source” object when using ValueInjector or Automapper? Nested Mapping Issue?
My Problem
"Source" object Properties of the same class that do not exist in the View, are overwritting the same properties in the "Target" object with nulls. How do I prevent this? In affect how do ...
0
votes
2answers
59 views
Is there a generic way to assign a new object's value to an original object's value of the same class?
I have an Original Document object which has subclasses and properties. I have a different object, which is a subset of this object which holds values entered from a form, a view model if you like. ...
0
votes
1answer
163 views
Is it possible to use AutoMapper or ValueInjecter to map a Source Property to a Target Method?
I am trying to map a simple, plain source object to a destination object which implements an interface (IFeatureClass) and only has a public method named SetValue(index, value) for setting the ...
0
votes
0answers
147 views
Does Automapper or Value Injecter use a DI/IOC?
I haven't used either of these tools but I was wondering if either of them use a DI/IOC or if they are their own DI/IOC or am I missing the point of these tools?
If either of them do use a DI/IOC ...
0
votes
1answer
336 views
How do I create a custom value injection to map my entity to my view model? Attempt included
I'm trying to use the ValueInjector (latest version from NuGet) to inject my view model with data from my EntityFramework Code First object. I'll want to do the reverse of this as well, but this is ...
0
votes
1answer
295 views
Steps to map classes using ValueInjector
Quickly getting to the problem the mapping does not occur for the following code. Could someone explain why? or what i should do for the mapping to occur?
var parent = new Parent();
...
0
votes
0answers
69 views
How to use ValueInjecter with DataReader? [closed]
I tried to use this example but it does not work with the current version.
Inject method seems to no longer take PropertyDescriptorCollection targetProps anymore
1
vote
0answers
366 views
Flattening collections with ValueInjector or AutoMapper
Given the following sample classes:
public class OrderHeader
{
public int OrderHeaderId { get; set; }
public string CustomerName { get; set; }
}
public class OrderItem
{
public int ...
1
vote
1answer
242 views
What is NHibernate doing to my Iesi.Collections.ISet?
I'm trying to test a service of mine that is called GetUsersForRole. It takes in a simple string and is passes this off to my RoleRepository to deal with NHibernate and get a collection of Roles with ...
0
votes
0answers
215 views
omu.ValueInjector implementation
I am trying to implement Auto Mapper using omu.ValueInjector.
My Model is like :
public class PersonDetails : EntityBase
{
public PersonDetails();
public int PersonId { get; set; }
...
1
vote
2answers
126 views
Inline constructor and InjectFrom calls return Object
Using ValueInjecter, I often find myself writing code like this:
var foo1 = new Foo().InjectFrom(foo2);
But that, unexpectedly, causes foo1 to be of type Object, not Foo. Same with
var foo1 = (new ...
0
votes
1answer
109 views
Mapping LinqToEntities join to ViewModel
I have the following Models and ViewModels (edited for brevity):
Order Model:
OrderId
ShippingAddressId
.....
Address Model:
AddressId
...
4
votes
1answer
357 views
Error when saving fields with special characters using EntityFramework and MVC ModelBinding
I am having problems with (2) fields when saving entities in my ASP.NET MVC4 application:
email
phone
As you know, these fields will have special characters @ and - typically. Here is my code from ...
2
votes
1answer
227 views
ValueInjector not mapping property
I'm having trouble trying to get ValueInjector to map my objects correctly. This is the code I am using for the mapping:
public IEnumerable<CategoryDTO> FindCategories(IList<object[]> ...
1
vote
1answer
338 views
Using ValueInjecter, is there a way to only inject a given property one time
Given 3 classes,
A, and B which each have an ID property, and then various other properties
and C, which has an ID, and the combined properties of A and B,
I want to
C.InjectFrom(A);
...
2
votes
3answers
725 views
Copying NHibernate POCO to DTO without triggering lazy load or eager load
I need to create DTOs from NHibernate POCO objects. The problem is that the POCO objects contain dynamic proxies, which should not be copied to the DTO. I eager load all the collections and references ...
1
vote
1answer
196 views
Map between enums with ValueInjecter
Is it possible to map between 2 different enums?
That is, I want to take one enum value and map it to a corresponding value in a different enum type.
I know how to do this with AutoMapper:
// ...
3
votes
1answer
790 views
Glue vs Automapper vs Emit vs ValueInjecter entity mappers
I'm working on a DDD project where a lot of field mapping is going on. I'm looking for a fast and solid mapping library as opposed to writing all the mappings by hand and there seems to be a lot of ...
1
vote
2answers
162 views
Using mapping framework with drastically different Domain and view-models ?
If I have two models that are very different, is it defeating the purpose to even use a mapping framework such as Auto Mapper or Value Injecter?
For example, say I have two models that are ...
1
vote
1answer
584 views
c# ValueInjecter : Mapping the whole object Graph
I just started using ValueInjecter for my Entity Mappings(DTO <-> Entity).
Heres my DTO :
public class IncidentDTO
{
int ID { get; set; }
string Name { get; set; }
AgencyDTO agencyDTO ...
2
votes
3answers
2k views
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 inside of the Edit View?
UPDATE
So I have an item in the DB (an Article). I want to edit an ...
2
votes
2answers
104 views
How to find the source property based on the name of a flattened property with ValueInjecter
This is a counterpart to same question (but with AutoMapper).
I use ValueInjecter and am interested if there is a solution.
Simplified code example:
// get a list of viewModels for the grid.
// ...
1
vote
1answer
228 views
How do I stop ValueInjecter from mapping null values?
I am using ValueInjecter to map two identical objects. The problem I am having is that ValueInjector copies null values from my source over my target. So I am loosing lots of data to null values.
...
2
votes
1answer
225 views
ValueInjecter different types/property names
is it possible to inject from something like this :
public class DomainEntity
{
public Resource DescriptionResource { get; set; }
}
public class Resource
{
public ...
2
votes
1answer
215 views
Changing null strings to string.Empty using ValueInjecter
I'm using ValueInjecter to flatten/unflatten view models into domain objects created by Entity Framework (4.3.1) model-first. All of my VARCHAR columns in my database are NOT NULL DEFAULT '' ...
2
votes
1answer
150 views
what does FlatLoop/UnFlatLoop mean in valueinjecter?
here is the valueinjecter doc(http://valueinjecter.codeplex.com/documentation), but i'm not so
clear about these terms, flattening/unflattening ,FlatLoop/UnFlatLoop ... , how could i
understand ...
2
votes
1answer
329 views
Mapping umbraco node to strongtyped object
I am working with Umbraco 4.7.1 and I am trying to map the content-nodes to some autogenerated strong typed objects. I have tried using both valueinjecter and automapper, but OOTB neither of them map ...
2
votes
1answer
427 views
Using ValueInjecter to flatten objects including nullable types
I'm trying to use ValueInjector to flatten a class and to have it also copy across values from Nullable<int>'s to int's.
Eg given the following (contrived) classes:
class CustomerObject
{
...
2
votes
1answer
132 views
Framework for merging business entities
Is there any framework which can do the following:
var source = new Entity()
{
StringProp = null,
IntProp = 100,
};
var target = new Entity()
{
StringProp = "stringValue", // Property ...
1
vote
1answer
208 views
ValueInjecter - Joins multiple result sets into 1 collection LINQ?
How do I use ValueInjecter with a LINQ join that joins multiple result sets? For example, this code inject result values into CombinedResult object, but I also want some of errorsAndWarning values ...
1
vote
1answer
158 views
How can I inspect the attributes of a target property using Value Injector?
I'm using Value Injector to manage my mappings in an ASP.NET MVC project and it's been great so far. The domain has the concept of a length measurement stored as standard metric units in the db and ...


