If you need convention-based-mapping you can:

1) use ModelMapper injecting SimpleModelInspector
Example:
var inspector = new SimpleModelInspector();
inspector.IsEntity((type, declared) => type == typeof(Inherited));
inspector.IsRootEntity((type, declared) => type == typeof(Inherited));
var mapper = new ModelMapper(inspector);

2) use ConventionModelMapper instead ModelMapper
3) use ModelMapper injecting your own impl of IModelInspector
4) use ModelMapper with its events
5) ConfORM yourself LOL!!

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/nhusers/-/2KVfVTIycBUJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to