Skip to content

Commit e32dcc6

Browse files
committed
Added a fix for a bug with a component of dynamic entity (NH-3757)
1 parent a901f3d commit e32dcc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NHibernate/Tuple/Component/ComponentEntityModeToTuplizerMapping.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public ComponentEntityModeToTuplizerMapping(Mapping.Component component)
4646
userSuppliedTuplizerImpls.TryGetValue(EntityMode.Poco, out tempObject2);
4747
userSuppliedTuplizerImpls.Remove(EntityMode.Poco);
4848
tuplizerImpl = tempObject2;
49-
if (owner.HasPocoRepresentation && component.HasPocoRepresentation)
49+
if (component.HasPocoRepresentation)
5050
{
5151
if (tuplizerImpl == null)
5252
{

0 commit comments

Comments
 (0)