public ConventionMappingCompiler(string tablePrefix, IAttributeMapperFactory attributeMapperFactory)
 {
     _mapper = new ConventionModelMapper(tablePrefix)
     {
         AttributeMapperFactory = attributeMapperFactory
     };
 }
 public ConventionMappingCompiler(IAttributeMapperFactory attributeMapperFactory)
     : this(null, attributeMapperFactory)
 {
 }