Hi all,
I am using AutoMapper in my project along with, NHibernate and ASP.NET MVC 2.
As the title states, if I have a list of DTOs or a DTO inside the parent DTO that I am mapping to the View Model, should I flatten out the inner DTOs as well ?
Edit:
Should I write view model classes for the internal objects as well or should I use them as it is (as DTOs with lazy loading, due to NHibernate)?
Thanks