Skip to content

Commit b59a55f

Browse files
committed
NH3316/ByCodeFixture.cs: Escape column name which is a keyword in at least Firebird.
1 parent 31c2804 commit b59a55f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NHibernate.Test/NHSpecificTest/NH3316/ByCodeFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ protected override HbmMapping GetMappings()
2727
r.Component(c =>
2828
{
2929
c.Parent(x => x.Parent);
30-
c.Property(x => x.Value);
30+
c.Property(x => x.Value, pm=>pm.Column("`Value`"));
3131
});
3232
});
3333
});

0 commit comments

Comments
 (0)