Skip to content

Commit d15064f

Browse files
committed
Fix NH-1587
SVN: trunk@3927
1 parent abfc5e8 commit d15064f

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

src/NHibernate.Test/NHSpecificTest/NH1587/Fixture.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace NHibernate.Test.NHSpecificTest.NH1587
88
[TestFixture]
99
public class Fixture
1010
{
11-
[Test, Ignore("Not fixed yet")]
11+
[Test]
1212
public void Bug()
1313
{
1414
XmlConfigurator.Configure();

src/NHibernate/Tuple/Entity/AbstractEntityTuplizer.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public abstract class AbstractEntityTuplizer : IEntityTuplizer
2323
protected internal IGetter[] getters;
2424
protected internal ISetter[] setters;
2525
protected internal bool hasCustomAccessors;
26-
private readonly IInstantiator instantiator;
26+
protected IInstantiator instantiator;
2727
private readonly IProxyFactory proxyFactory;
2828
private readonly IAbstractComponentType identifierMapperType;
2929

@@ -67,7 +67,8 @@ public AbstractEntityTuplizer(EntityMetamodel entityMetamodel, PersistentClass m
6767
}
6868
hasCustomAccessors = foundCustomAccessor;
6969

70-
instantiator = BuildInstantiator(mappingInfo);
70+
//NH-1587
71+
//instantiator = BuildInstantiator(mappingInfo);
7172

7273
if (entityMetamodel.IsLazy)
7374
{

src/NHibernate/Tuple/Entity/DynamicMapEntityTuplizer.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ public class DynamicMapEntityTuplizer : AbstractEntityTuplizer
1414
private static readonly ILog log = LogManager.GetLogger(typeof(PocoEntityTuplizer));
1515

1616
internal DynamicMapEntityTuplizer(EntityMetamodel entityMetamodel, PersistentClass mappingInfo)
17-
: base(entityMetamodel, mappingInfo) {}
17+
: base(entityMetamodel, mappingInfo)
18+
{
19+
// NH different behavior fo NH-1587
20+
instantiator = BuildInstantiator(mappingInfo);
21+
}
1822

1923
public override System.Type ConcreteProxyClass
2024
{

src/NHibernate/Tuple/Entity/PocoEntityTuplizer.cs

+9-4
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,16 @@ public PocoEntityTuplizer(EntityMetamodel entityMetamodel, PersistentClass mappe
4040
lazyPropertyNames.Add(property.Name);
4141
}
4242

43-
if (hasCustomAccessors || !Cfg.Environment.UseReflectionOptimizer)
43+
if (Cfg.Environment.UseReflectionOptimizer)
4444
{
45-
optimizer = null;
45+
// NH different behavior fo NH-1587
46+
optimizer = Cfg.Environment.BytecodeProvider.GetReflectionOptimizer(mappedClass, getters, setters);
4647
}
47-
else
48+
instantiator = BuildInstantiator(mappedEntity);
49+
50+
if (hasCustomAccessors)
4851
{
49-
optimizer = Cfg.Environment.BytecodeProvider.GetReflectionOptimizer(mappedClass, getters, setters);
52+
optimizer = null;
5053
}
5154

5255
proxyValidator = Cfg.Environment.BytecodeProvider.ProxyFactoryFactory.ProxyValidator;
@@ -81,10 +84,12 @@ protected internal override IInstantiator BuildInstantiator(PersistentClass pers
8184
{
8285
if (optimizer == null)
8386
{
87+
log.Debug("Create Instantiator without optimizer for:" + persistentClass.MappedClass.FullName);
8488
return new PocoInstantiator(persistentClass, null);
8589
}
8690
else
8791
{
92+
log.Debug("Create Instantiator using optimizer for:" + persistentClass.MappedClass.FullName);
8893
return new PocoInstantiator(persistentClass, optimizer.InstantiationOptimizer);
8994
}
9095
}

0 commit comments

Comments
 (0)