How to pass only a sub set of overrides
Hi,
I'm sure I'm missing something obvious here but I don't see how I can pass only a subset of overrides from a given assembly.
All I've found is this:
.UseOverridesFromAssemblyOf()
whereas I'm looking for something like this:
.UseOverridesFromAssemblyOf(t => t.Namespace == overrideNamespace)
The reason is that I have two sets of mappings and overrides in the same assembly and I don't want to apply all of them at the same time. Is there API that lets me filter out the types that I don't need ?
Thanks
Pawel