Skip to content

Commit ddd15d4

Browse files
committed
Fixed conventions overwriting component column prefixes
1 parent c796105 commit ddd15d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FluentNHibernate/PersistenceModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ public PersistenceModel(IConventionFinder conventionFinder)
4747

4848
visitors.Add(new SeparateSubclassVisitor(subclassProviders));
4949
visitors.Add(new ComponentReferenceResolutionVisitor(componentResolvers, componentProviders));
50-
visitors.Add(new ComponentColumnPrefixVisitor());
5150
visitors.Add(new RelationshipPairingVisitor(BiDirectionalManyToManyPairer));
5251
visitors.Add(new ManyToManyTableNameVisitor());
5352
visitors.Add(new ConventionVisitor(Conventions));
53+
visitors.Add(new ComponentColumnPrefixVisitor());
5454
visitors.Add(new RelationshipKeyPairingVisitor());
5555
visitors.Add((validationVisitor = new ValidationVisitor()));
5656
}

0 commit comments

Comments
 (0)