protected void BeforeMapManyToMany(IModelInspector modelInspector, PropertyPath member, IManyToManyMapper collectionRelationManyToManyCustomizer)
        {
            collectionRelationManyToManyCustomizer.Lazy(LazyRelation.Proxy);
            Type destinationType = member.LocalMember.GetPropertyOrFieldType().GetGenericArguments()[0];

            collectionRelationManyToManyCustomizer.Column(this.GetNormalizedDbName(String.Concat(destinationType.Name, "ID")));
            collectionRelationManyToManyCustomizer.Class(destinationType);
        }