Skip to:
"name" attribute is not set to property name in generated xml-mapping when using ComponentAsId.
e.g.mapper.Class<MyClass>(map => map.ComponentAsId(id => id.Identity, cid => { cid.Property(x => x.Id, x => x.Length(20)); cid.Property(x => x.EffectiveDate); }));
Actual:<composite-id class="EffectiveDateId, Test, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"> <key-property name="Id" type="AnsiString" length="20" /> <key-property name="EffectiveDate" /> </composite-id>
Expected:<composite-id name="Identity" class="EffectiveDateId, Test, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"> <key-property name="Id" type="AnsiString" length="20" /> <key-property name="EffectiveDate" /> </composite-id>
possibly related: See http://stackoverflow.com/questions/8676120/nhibernate-componentasid-does-not-actually-set-id-property
Closing issues fixed in 3.3.1.CR1.
Contributed fix committed. Thanks!95bf30476565c71c46aff46577439d1f2c7c42f4
Created a pull request insteadhttps://github.com/nhibernate/nhibernate-core/pull/42
Created test case and fix.
"name" attribute is not set to property name in generated xml-mapping when using ComponentAsId.
e.g.
mapper.Class<MyClass>(map => map.ComponentAsId(id => id.Identity, cid =>
{
cid.Property(x => x.Id, x => x.Length(20));
cid.Property(x => x.EffectiveDate);
}));
Actual:
<composite-id class="EffectiveDateId, Test, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<key-property name="Id" type="AnsiString" length="20" />
<key-property name="EffectiveDate" />
</composite-id>
Expected:
<composite-id name="Identity" class="EffectiveDateId, Test, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<key-property name="Id" type="AnsiString" length="20" />
<key-property name="EffectiveDate" />
</composite-id>
possibly related:
See http://stackoverflow.com/questions/8676120/nhibernate-componentasid-does-not-actually-set-id-property