Hello,

given the following mapping (generated by FluentNHibernate)

<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
        <class xmlns="urn:nhibernate-mapping-2.2" name="MyClass, MyNamespace,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
table="MyTable">

                <composite-id name="Id" class="MyClassKey, MyNamespace,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
                        <key-property name="Key1" type="System.Decimal, 
mscorlib,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
                                <column name="KEY_1" />
                        </key-property>
                        <key-property name="Key2" type="System.DateTime, 
mscorlib,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
                                <column name="KEY_2" />
                        </key-property>
                </composite-id>

                <property name="..." type="System.Nullable`1[[System.DateTime,
mscorlib, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089]], mscorlib, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089">
                        <column name="..." not-null="false" />
                </property>

                <!-- ...  more properties ... -->
        </class>
</hibernate-mapping>

i get following debug message in the NH log:

13:49:11 [10] DEBUG AbstractComponentTuplizer - No custom accessors
found for component: MyClassKey, MyNamespace, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null

Can anyone tell me what this should mean?

 I didn't found any information about this even on Google.

Regards
Klaus

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to