1
vote
4answers
68 views
simple convention Automapper
check this out, I just wrote a simple automapper, it takes the value from the property with the same name and type of one object and puts it into another, and you can add exception …
0
votes
0answers
13 views
What’s wrong with my AutoMapper Customer ValueResolver Hook?
I have the following hook in my Global.aspx
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterRoutes(RouteTable.Routes);
AutoMapper.Mapper …
1
vote
2answers
30 views
Automapper, generics, dto funtimes
Here's the deal:
I have a report designer where users can create reports based on some predefined datasets. They can select a set of columns to include in the report and then, whe …
1
vote
0answers
16 views
Problem with AutoMapper in IIS7 when using signed assemblies
I am trying to use AutoMapper with web application running on IIS 7. The intended use it so map domain types defined in an external dll to view models defined in the IIS applicati …
0
votes
1answer
45 views
MVC - Model View inside of another Model View
Is it good practice to use one model view inside of another one and how will AutoMapper work with it?
Example:
public class CustomerModelView
{
public string FullName {get;set;} …
0
votes
2answers
53 views
How do you automap List<float> or float[] with Fluent NHibernate?
Having successfully gotten a sample program working, I'm now starting
to do Real Work with Fluent NHibernate - trying to use Automapping on my project's class
heirarchy.
It's a …
1
vote
1answer
48 views
Inject AutoMapper
I have been working on injecting AutoMapper into controllers. I like the implementation of Code Camp Server. It creates a wrapper around AutoMapper's IMappingEngine. The dependency …
1
vote
1answer
93 views
Is AutoMapper mapping EF relationships well?
I am using Entity Framework + AutoMapper to convert the EntityObjects to POCO.
The relationships in EF use EntityCollection<T>. The relationships in POCO use ICollection< …
0
votes
1answer
50 views
AutoMapper Collections
I'm trying to map an array into an ICollection of type <T>.
Basically I want to be able to do:
Mapper.CreateMap<X[], Y>();
Where Y is Collection<T>
Any ideas …
0
votes
2answers
55 views
DTO/Command Pattern Question
There was a very interesting discussion on LosTechies regarding AutoMapper(an argument for/against 2-way mapping).
This actually caught my attention due to the problem I'm current …
0
votes
2answers
38 views
asp.net mvc automapper parsing
let's say we have something like this
public class Person
{
public string Name {get; set;}
public Country Country {get; set;}
}
public class PersonViewModel
{
public Pe …
0
votes
3answers
90 views
Using AutoMapper (by Jimmy Bogard) with NHibernate
I'm trying to use AutoMapper to map from DTO's to my Domain.
My DTO's might look like this:
public class MyDTO
{
public string Name { get; set; }
public bool OtherPropert …
0
votes
3answers
81 views
Fluent NHibernate AutoMapping throws “StaleStateException” when try to Commit a List<>
The following code throws a StaleStateException exception when the Order.OrderItems property (an IList) is Commited. The full text of the exception is:
An unhandled exception of …
1
vote
3answers
125 views
How to Configure AutoMapper Once Per AppDomain
My current project with assemblies for the domain model, MVC web application, and unit tests. How can I set up the AutoMapper configuration so that all assemblies reference the sam …
0
votes
2answers
106 views
Automapper (c#) - Using the instance version of CreateMap and Map with a WCF service???
Hi there,
Been having some real issues with automapper, i think i have found the solution but unsure of how to implement it..
basically i am using a custom mapping with ResolveUs …
