I am trying to map DataRow collection to collection of object.
[Serializable]
public class City
{
public int CityId { get; set; }
public bool Required { get; set; }
}
public class CityCollection : CollectionBase<City>
{
public CityCollection()
{
}
public CityCollection(List<City> list)
: base(list)
{
}
}
And the mapping I am doing:
IEnumerable<DataRow> rows = GetRows();
AutoMapper.Mapper.Map<IEnumerable<DataRow>, CityCollection>(rows);
The property 'Required' is not set its always false, only the CityId.
I tried the after map method too:
AutoMapper.Mapper.CreateMap<IEnumerable<DataRow>, City>().AfterMap((s, d) => d.Required = s.Select(r => r.Field<bool>("Required")).FirstOrDefault());
And:
AutoMapper.Mapper.AssertConfigurationIsValid();
But, it's not working. Any Idea?
CollectionBase<T>? Where is that defined? – Andrew Whitaker Mar 1 '12 at 14:17