OK: Top level mapping for this object:
Code:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.0" namespace="KBR.LAPD.DocumentManagement.Entities">
<class name="KBR.LAPD.DocumentManagement.Entities.Rfi, Entities" table="RFI">
<id name="RfiID" column="RFI_ID">
<generator class="sequence">
<param name="sequence">RFI_RFI_ID_SEQ</param>
</generator>
</id>
<version name="Version" column="VERSION"/>
<property name="RfiName" column="RFI_NAME" />
<property name="Description" column="RFI_DESC" />
<property name="RfiStatusID" column="RFI_STATUS_ID" />
<many-to-one name="TransmittalType" class="KBR.LAPD.DocumentManagement.Entities.TransmittalType, Entities" column="XMTL_TYPE_ID" fetch="select"/>
<many-to-one name="SubProject" class="KBR.LAPD.DocumentManagement.Entities.SubProject, Entities" column="SUB_PROJ_ID" outer-join="false" fetch="select" />
<bag name="Documents" table="DOC" order-by="DOC_ID" outer-join="false" fetch="join" lazy="true">
<key column="RFI_ID" />
<one-to-many class="KBR.LAPD.DocumentManagement.Entities.Document, Entities" />
</bag>
<bag name="Transmittals" outer-join="false" fetch="join" table="XMTL" lazy="true" order-by="TransmittalID">
<key column="RFI_ID" />
<one-to-many class="KBR.LAPD.DocumentManagement.Entities.Transmittal, Entities"/>
</bag>
</class>
</hibernate-mapping>
snippet of log output: As you can see it is loading the Documents collections and, further down the Document.Attributes collections
NHibernate.SqlCommand.SqlSelectBuilder: 2006-05-19 13:44:22,822 [5092] DEBUG NHibernate.SqlCommand.SqlSelectBuilder - The initial capacity was set too low at: 12 for the SelectSqlBuilder that needed a capacity of: 14 for the table RFI this
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,822 [5092] DEBUG NHibernate.Impl.SessionImpl - flushing session
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,838 [5092] DEBUG NHibernate.Impl.SessionImpl - Flushing entities and processing referenced collections
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,838 [5092] DEBUG NHibernate.Impl.SessionImpl - Processing unreferenced collections
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,838 [5092] DEBUG NHibernate.Impl.SessionImpl - scheduling collection removes/(re)creates/updates
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,838 [5092] DEBUG NHibernate.Impl.SessionImpl - Flushed: 0 insertions, 0 updates, 0 deletions to 0 objects
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,838 [5092] DEBUG NHibernate.Impl.SessionImpl - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,853 [5092] DEBUG NHibernate.Impl.SessionImpl - dont need to execute flush
NHibernate.Impl.BatcherImpl: 2006-05-19 13:44:22,853 [5092] DEBUG NHibernate.Impl.BatcherImpl - Opened new IDbCommand, open IDbCommands :1
NHibernate.Impl.BatcherImpl: 2006-05-19 13:44:22,853 [5092] DEBUG NHibernate.Impl.BatcherImpl - Building an IDbCommand object for the SqlString: SELECT this.RFI_ID as RFI_ID2_, this.RFI_NAME as RFI_NAME2_, this.RFI_STATUS_ID as RFI_STAT5_2_, this.SUB_PROJ_ID as SUB_PROJ7_2_, this.VERSION as VERSION2_, this.RFI_DESC as RFI_DESC2_, this.XMTL_TYPE_ID as XMTL_TYP6_2_, documents1_.RFI_ID as RFI_ID__, documents1_.DOC_ID as DOC_ID__, documents1_.DOC_ID as DOC_ID0_, documents1_.IS_VALID as IS_VALID0_, documents1_.DOC_STORAGE_ID as DOC_STOR7_0_, documents1_.DOC_SHEET_NUMBER as DOC_SHE11_0_, documents1_.DOC_STORAGE_LOCATION as DOC_STOR6_0_, documents1_.DOC_TITLE as DOC_TITLE0_, documents1_.DOC_REVISION as DOC_REVI8_0_, documents1_.VERSION as VERSION0_, documents1_.DOC_UID as DOC_UID0_, documents1_.DOC_FILENAME as DOC_FILE4_0_, documents1_.RFI_ID as RFI_ID0_, documents1_.DOC_NAME as DOC_NAME0_, documents1_.XMTL_ID as XMTL_ID0_, transmitta2_.XMTL_ID as XMTL_ID1_, transmitta2_.VERSION as VERSION1_, transmitta2_.RFI_ID as RFI_ID1_ FROM RFI this left outer join DOC documents1_ on this.RFI_ID=documents1_.RFI_ID left outer join XMTL transmitta2_ on documents1_.XMTL_ID=transmitta2_.XMTL_ID WHERE this.RFI_STATUS_ID = :this.RFI_STATUS_ID ORDER BY this.RFI_STATUS_ID asc
NHibernate.Loader.Loader: 2006-05-19 13:44:22,853 [5092] INFO NHibernate.Loader.Loader - SELECT this.RFI_ID as RFI_ID2_, this.RFI_NAME as RFI_NAME2_, this.RFI_STATUS_ID as RFI_STAT5_2_, this.SUB_PROJ_ID as SUB_PROJ7_2_, this.VERSION as VERSION2_, this.RFI_DESC as RFI_DESC2_, this.XMTL_TYPE_ID as XMTL_TYP6_2_, documents1_.RFI_ID as RFI_ID__, documents1_.DOC_ID as DOC_ID__, documents1_.DOC_ID as DOC_ID0_, documents1_.IS_VALID as IS_VALID0_, documents1_.DOC_STORAGE_ID as DOC_STOR7_0_, documents1_.DOC_SHEET_NUMBER as DOC_SHE11_0_, documents1_.DOC_STORAGE_LOCATION as DOC_STOR6_0_, documents1_.DOC_TITLE as DOC_TITLE0_, documents1_.DOC_REVISION as DOC_REVI8_0_, documents1_.VERSION as VERSION0_, documents1_.DOC_UID as DOC_UID0_, documents1_.DOC_FILENAME as DOC_FILE4_0_, documents1_.RFI_ID as RFI_ID0_, documents1_.DOC_NAME as DOC_NAME0_, documents1_.XMTL_ID as XMTL_ID0_, transmitta2_.XMTL_ID as XMTL_ID1_, transmitta2_.VERSION as VERSION1_, transmitta2_.RFI_ID as RFI_ID1_ FROM RFI this left outer join DOC documents1_ on this.RFI_ID=documents1_.RFI_ID left outer join XMTL transmitta2_ on documents1_.XMTL_ID=transmitta2_.XMTL_ID WHERE this.RFI_STATUS_ID = :p0 ORDER BY this.RFI_STATUS_ID asc
NHibernate.SQL: 2006-05-19 13:44:22,853 [5092] DEBUG NHibernate.SQL - SELECT this.RFI_ID as RFI_ID2_, this.RFI_NAME as RFI_NAME2_, this.RFI_STATUS_ID as RFI_STAT5_2_, this.SUB_PROJ_ID as SUB_PROJ7_2_, this.VERSION as VERSION2_, this.RFI_DESC as RFI_DESC2_, this.XMTL_TYPE_ID as XMTL_TYP6_2_, documents1_.RFI_ID as RFI_ID__, documents1_.DOC_ID as DOC_ID__, documents1_.DOC_ID as DOC_ID0_, documents1_.IS_VALID as IS_VALID0_, documents1_.DOC_STORAGE_ID as DOC_STOR7_0_, documents1_.DOC_SHEET_NUMBER as DOC_SHE11_0_, documents1_.DOC_STORAGE_LOCATION as DOC_STOR6_0_, documents1_.DOC_TITLE as DOC_TITLE0_, documents1_.DOC_REVISION as DOC_REVI8_0_, documents1_.VERSION as VERSION0_, documents1_.DOC_UID as DOC_UID0_, documents1_.DOC_FILENAME as DOC_FILE4_0_, documents1_.RFI_ID as RFI_ID0_, documents1_.DOC_NAME as DOC_NAME0_, documents1_.XMTL_ID as XMTL_ID0_, transmitta2_.XMTL_ID as XMTL_ID1_, transmitta2_.VERSION as VERSION1_, transmitta2_.RFI_ID as RFI_ID1_ FROM RFI this left outer join DOC documents1_ on this.RFI_ID=documents1_.RFI_ID left outer join XMTL transmitta2_ on documents1_.XMTL_ID=transmitta2_.XMTL_ID WHERE this.RFI_STATUS_ID = :p0 ORDER BY this.RFI_STATUS_ID asc
NHibernate.SQL: 2006-05-19 13:44:22,853 [5092] DEBUG NHibernate.SQL - :p0 = '1'
NHibernate.Connection.DriverConnectionProvider: 2006-05-19 13:44:22,853 [5092] DEBUG NHibernate.Connection.DriverConnectionProvider - Obtaining IDbConnection from Driver
NHibernate.Impl.BatcherImpl: 2006-05-19 13:44:22,869 [5092] DEBUG NHibernate.Impl.BatcherImpl - Opened Reader, open Readers :1
NHibernate.Loader.Loader: 2006-05-19 13:44:22,869 [5092] DEBUG NHibernate.Loader.Loader - processing result set
NHibernate.Loader.Loader: 2006-05-19 13:44:22,869 [5092] DEBUG NHibernate.Loader.Loader - result row: , , 555
NHibernate.Loader.Loader: 2006-05-19 13:44:22,869 [5092] DEBUG NHibernate.Loader.Loader - Initializing object from DataReader: 555
NHibernate.Loader.Loader: 2006-05-19 13:44:22,869 [5092] DEBUG NHibernate.Loader.Loader - Hydrating entity: KBR.LAPD.DocumentManagement.Entities.Rfi#555
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,869 [5092] DEBUG NHibernate.Impl.SessionImpl - Version: 0
NHibernate.Loader.Loader: 2006-05-19 13:44:22,869 [5092] DEBUG NHibernate.Loader.Loader - result set contains (possibly empty) collection: [KBR.LAPD.DocumentManagement.Entities.Rfi.Documents#555]
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,869 [5092] DEBUG NHibernate.Impl.SessionImpl - new collection: instantiating
NHibernate.Loader.Loader: 2006-05-19 13:44:22,869 [5092] DEBUG NHibernate.Loader.Loader - result row: 2151, , 782
NHibernate.Loader.Loader: 2006-05-19 13:44:22,869 [5092] DEBUG NHibernate.Loader.Loader - Initializing object from DataReader: 2151
NHibernate.Loader.Loader: 2006-05-19 13:44:22,885 [5092] DEBUG NHibernate.Loader.Loader - Hydrating entity: KBR.LAPD.DocumentManagement.Entities.Document#2151
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,885 [5092] DEBUG NHibernate.Impl.SessionImpl - Version: 3
NHibernate.Loader.Loader: 2006-05-19 13:44:22,885 [5092] DEBUG NHibernate.Loader.Loader - Initializing object from DataReader: 782
NHibernate.Loader.Loader: 2006-05-19 13:44:22,885 [5092] DEBUG NHibernate.Loader.Loader - Hydrating entity: KBR.LAPD.DocumentManagement.Entities.Rfi#782
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,885 [5092] DEBUG NHibernate.Impl.SessionImpl - Version: 26
NHibernate.Loader.Loader: 2006-05-19 13:44:22,885 [5092] DEBUG NHibernate.Loader.Loader - found row of collection: [KBR.LAPD.DocumentManagement.Entities.Rfi.Documents#782]
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,885 [5092] DEBUG NHibernate.Impl.SessionImpl - new collection: instantiating
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,885 [5092] DEBUG NHibernate.Impl.SessionImpl - loading [Document#2151]
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,885 [5092] DEBUG NHibernate.Impl.SessionImpl - attempting to resolve [Document#2151]
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:22,885 [5092] DEBUG NHibernate.Impl.SessionImpl - resolved object in session cache [KBR.LAPD.DocumentManagement.Entities.Document#2151]
....
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:24,275 [5092] DEBUG NHibernate.Impl.SessionImpl - checking second-level cache
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:24,275 [5092] DEBUG NHibernate.Impl.SessionImpl - collection not cached
NHibernate.Impl.BatcherImpl: 2006-05-19 13:44:24,275 [5092] DEBUG NHibernate.Impl.BatcherImpl - Opened new IDbCommand, open IDbCommands :1
NHibernate.Impl.BatcherImpl: 2006-05-19 13:44:24,275 [5092] DEBUG NHibernate.Impl.BatcherImpl - Building an IDbCommand object for the SqlString: SELECT attributes0_.DOC_ID as DOC_ID__, attributes0_.DOC_ATTR_ID as DOC_ATTR1___, attributes0_.DOC_ATTR_ID as DOC_ATTR1_4_, attributes0_.VERSION as VERSION4_, attributes0_.NAME as NAME4_, attributes0_.DOC_ID as DOC_ID4_, attributes0_.IS_VALID as IS_VALID4_, attributes0_.ATTR_DEF_ID as ATTR_DEF8_4_, attributes0_.VALUE as VALUE4_, attributes0_.VALIDATION_ERR_MSG as VALIDATI6_4_, attributed1_.ATTR_DEF_ID as ATTR_DEF1_0_, attributed1_.DOC_REG_DEF as DOC_REG_7_0_, attributed1_.VISIBLE as VISIBLE0_, attributed1_.DISPLAY_NAME as DISPLAY_4_0_, attributed1_.ALLOWED_VAL_CALC_ID as ALLOWED14_0_, attributed1_.DDD_SEARCH_COL_NAME as DDD_SEA12_0_, attributed1_.VERSION as VERSION0_, attributed1_.IS_REQUIRED as IS_REQU11_0_, attributed1_.IS_DOC_STORAGE_ATTR as IS_DOC_10_0_, attributed1_.DESCR as DESCR0_, attributed1_.DEF_VAL_CALC_ID as DEF_VAL13_0_, attributed1_.DATA_TYPE as DATA_TYPE0_, attributed1_.DOC_STORAGE_DEF as DOC_STOR8_0_, attributed1_.VAL_VALIDATOR_CALC_ID as VAL_VAL15_0_, attributed1_.IS_DOC_REG_ATTR as IS_DOC_R9_0_, attributea2_.ATTR_ALLOWED_VAL_CALC_DEF_ID as ATTR_ALL1_1_, attributea2_.VERSION as VERSION1_, attributea2_.NAME as NAME1_, attributea2_.TYPE as TYPE1_, attributea2_.DESCR as DESCR1_, attributea2_.ASSEMBLY as ASSEMBLY1_, attributed3_.ATTR_DEF_VAL_CALC_DEF_ID as ATTR_DEF1_2_, attributed3_.VERSION as VERSION2_, attributed3_.NAME as NAME2_, attributed3_.TYPE as TYPE2_, attributed3_.DESCR as DESCR2_, attributed3_.ASSEMBLY as ASSEMBLY2_, attributev4_.ATTR_VAL_VALIDATOR_CALC_DEF_ID as ATTR_VAL1_3_, attributev4_.VERSION as VERSION3_, attributev4_.NAME as NAME3_, attributev4_.TYPE as TYPE3_, attributev4_.DESCR as DESCR3_, attributev4_.ASSEMBLY as ASSEMBLY3_ FROM DOC_ATTR attributes0_ left outer join ATTR_DEF attributed1_ on attributes0_.ATTR_DEF_ID=attributed1_.ATTR_DEF_ID left outer join ATTR_ALLOWED_VAL_CALC_DEF attributea2_ on attributed1_.ALLOWED_VAL_CALC_ID=attributea2_.ATTR_ALLOWED_VAL_CALC_DEF_ID left outer join ATTR_DEF_VAL_CALC_DEF attributed3_ on attributed1_.DEF_VAL_CALC_ID=attributed3_.ATTR_DEF_VAL_CALC_DEF_ID left outer join ATTR_VAL_VALIDATOR_DEF attributev4_ on attributed1_.VAL_VALIDATOR_CALC_ID=attributev4_.ATTR_VAL_VALIDATOR_CALC_DEF_ID WHERE attributes0_.DOC_ID=:DOC_ID
NHibernate.Loader.Loader: 2006-05-19 13:44:24,275 [5092] INFO NHibernate.Loader.Loader - SELECT attributes0_.DOC_ID as DOC_ID__, attributes0_.DOC_ATTR_ID as DOC_ATTR1___, attributes0_.DOC_ATTR_ID as DOC_ATTR1_4_, attributes0_.VERSION as VERSION4_, attributes0_.NAME as NAME4_, attributes0_.DOC_ID as DOC_ID4_, attributes0_.IS_VALID as IS_VALID4_, attributes0_.ATTR_DEF_ID as ATTR_DEF8_4_, attributes0_.VALUE as VALUE4_, attributes0_.VALIDATION_ERR_MSG as VALIDATI6_4_, attributed1_.ATTR_DEF_ID as ATTR_DEF1_0_, attributed1_.DOC_REG_DEF as DOC_REG_7_0_, attributed1_.VISIBLE as VISIBLE0_, attributed1_.DISPLAY_NAME as DISPLAY_4_0_, attributed1_.ALLOWED_VAL_CALC_ID as ALLOWED14_0_, attributed1_.DDD_SEARCH_COL_NAME as DDD_SEA12_0_, attributed1_.VERSION as VERSION0_, attributed1_.IS_REQUIRED as IS_REQU11_0_, attributed1_.IS_DOC_STORAGE_ATTR as IS_DOC_10_0_, attributed1_.DESCR as DESCR0_, attributed1_.DEF_VAL_CALC_ID as DEF_VAL13_0_, attributed1_.DATA_TYPE as DATA_TYPE0_, attributed1_.DOC_STORAGE_DEF as DOC_STOR8_0_, attributed1_.VAL_VALIDATOR_CALC_ID as VAL_VAL15_0_, attributed1_.IS_DOC_REG_ATTR as IS_DOC_R9_0_, attributea2_.ATTR_ALLOWED_VAL_CALC_DEF_ID as ATTR_ALL1_1_, attributea2_.VERSION as VERSION1_, attributea2_.NAME as NAME1_, attributea2_.TYPE as TYPE1_, attributea2_.DESCR as DESCR1_, attributea2_.ASSEMBLY as ASSEMBLY1_, attributed3_.ATTR_DEF_VAL_CALC_DEF_ID as ATTR_DEF1_2_, attributed3_.VERSION as VERSION2_, attributed3_.NAME as NAME2_, attributed3_.TYPE as TYPE2_, attributed3_.DESCR as DESCR2_, attributed3_.ASSEMBLY as ASSEMBLY2_, attributev4_.ATTR_VAL_VALIDATOR_CALC_DEF_ID as ATTR_VAL1_3_, attributev4_.VERSION as VERSION3_, attributev4_.NAME as NAME3_, attributev4_.TYPE as TYPE3_, attributev4_.DESCR as DESCR3_, attributev4_.ASSEMBLY as ASSEMBLY3_ FROM DOC_ATTR attributes0_ left outer join ATTR_DEF attributed1_ on attributes0_.ATTR_DEF_ID=attributed1_.ATTR_DEF_ID left outer join ATTR_ALLOWED_VAL_CALC_DEF attributea2_ on attributed1_.ALLOWED_VAL_CALC_ID=attributea2_.ATTR_ALLOWED_VAL_CALC_DEF_ID left outer join ATTR_DEF_VAL_CALC_DEF attributed3_ on attributed1_.DEF_VAL_CALC_ID=attributed3_.ATTR_DEF_VAL_CALC_DEF_ID left outer join ATTR_VAL_VALIDATOR_DEF attributev4_ on attributed1_.VAL_VALIDATOR_CALC_ID=attributev4_.ATTR_VAL_VALIDATOR_CALC_DEF_ID WHERE attributes0_.DOC_ID=:p0
NHibernate.SQL: 2006-05-19 13:44:24,275 [5092] DEBUG NHibernate.SQL - SELECT attributes0_.DOC_ID as DOC_ID__, attributes0_.DOC_ATTR_ID as DOC_ATTR1___, attributes0_.DOC_ATTR_ID as DOC_ATTR1_4_, attributes0_.VERSION as VERSION4_, attributes0_.NAME as NAME4_, attributes0_.DOC_ID as DOC_ID4_, attributes0_.IS_VALID as IS_VALID4_, attributes0_.ATTR_DEF_ID as ATTR_DEF8_4_, attributes0_.VALUE as VALUE4_, attributes0_.VALIDATION_ERR_MSG as VALIDATI6_4_, attributed1_.ATTR_DEF_ID as ATTR_DEF1_0_, attributed1_.DOC_REG_DEF as DOC_REG_7_0_, attributed1_.VISIBLE as VISIBLE0_, attributed1_.DISPLAY_NAME as DISPLAY_4_0_, attributed1_.ALLOWED_VAL_CALC_ID as ALLOWED14_0_, attributed1_.DDD_SEARCH_COL_NAME as DDD_SEA12_0_, attributed1_.VERSION as VERSION0_, attributed1_.IS_REQUIRED as IS_REQU11_0_, attributed1_.IS_DOC_STORAGE_ATTR as IS_DOC_10_0_, attributed1_.DESCR as DESCR0_, attributed1_.DEF_VAL_CALC_ID as DEF_VAL13_0_, attributed1_.DATA_TYPE as DATA_TYPE0_, attributed1_.DOC_STORAGE_DEF as DOC_STOR8_0_, attributed1_.VAL_VALIDATOR_CALC_ID as VAL_VAL15_0_, attributed1_.IS_DOC_REG_ATTR as IS_DOC_R9_0_, attributea2_.ATTR_ALLOWED_VAL_CALC_DEF_ID as ATTR_ALL1_1_, attributea2_.VERSION as VERSION1_, attributea2_.NAME as NAME1_, attributea2_.TYPE as TYPE1_, attributea2_.DESCR as DESCR1_, attributea2_.ASSEMBLY as ASSEMBLY1_, attributed3_.ATTR_DEF_VAL_CALC_DEF_ID as ATTR_DEF1_2_, attributed3_.VERSION as VERSION2_, attributed3_.NAME as NAME2_, attributed3_.TYPE as TYPE2_, attributed3_.DESCR as DESCR2_, attributed3_.ASSEMBLY as ASSEMBLY2_, attributev4_.ATTR_VAL_VALIDATOR_CALC_DEF_ID as ATTR_VAL1_3_, attributev4_.VERSION as VERSION3_, attributev4_.NAME as NAME3_, attributev4_.TYPE as TYPE3_, attributev4_.DESCR as DESCR3_, attributev4_.ASSEMBLY as ASSEMBLY3_ FROM DOC_ATTR attributes0_ left outer join ATTR_DEF attributed1_ on attributes0_.ATTR_DEF_ID=attributed1_.ATTR_DEF_ID left outer join ATTR_ALLOWED_VAL_CALC_DEF attributea2_ on attributed1_.ALLOWED_VAL_CALC_ID=attributea2_.ATTR_ALLOWED_VAL_CALC_DEF_ID left outer join ATTR_DEF_VAL_CALC_DEF attributed3_ on attributed1_.DEF_VAL_CALC_ID=attributed3_.ATTR_DEF_VAL_CALC_DEF_ID left outer join ATTR_VAL_VALIDATOR_DEF attributev4_ on attributed1_.VAL_VALIDATOR_CALC_ID=attributev4_.ATTR_VAL_VALIDATOR_CALC_DEF_ID WHERE attributes0_.DOC_ID=:p0
NHibernate.SQL: 2006-05-19 13:44:24,275 [5092] DEBUG NHibernate.SQL - :p0 = '2161'
NHibernate.Impl.BatcherImpl: 2006-05-19 13:44:24,275 [5092] DEBUG NHibernate.Impl.BatcherImpl - Opened Reader, open Readers :1
NHibernate.Loader.Loader: 2006-05-19 13:44:24,275 [5092] DEBUG NHibernate.Loader.Loader - result set contains (possibly empty) collection: [KBR.LAPD.DocumentManagement.Entities.Document.Attributes#2161]
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:24,275 [5092] DEBUG NHibernate.Impl.SessionImpl - uninitialized collection: initializing
NHibernate.Loader.Loader: 2006-05-19 13:44:24,275 [5092] DEBUG NHibernate.Loader.Loader - processing result set
NHibernate.Loader.Loader: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Loader.Loader - result row: 9, , , , 2372
NHibernate.Loader.Loader: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Loader.Loader - Initializing object from DataReader: 2372
NHibernate.Loader.Loader: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Loader.Loader - Hydrating entity: KBR.LAPD.DocumentManagement.Entities.Attribute#2372
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Impl.SessionImpl - Version: 0
NHibernate.Loader.Loader: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Loader.Loader - found row of collection: [KBR.LAPD.DocumentManagement.Entities.Document.Attributes#2161]
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Impl.SessionImpl - reading row
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Impl.SessionImpl - loading [Attribute#2372]
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Impl.SessionImpl - attempting to resolve [Attribute#2372]
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Impl.SessionImpl - resolved object in session cache [KBR.LAPD.DocumentManagement.Entities.Attribute#2372]
NHibernate.Loader.Loader: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Loader.Loader - result row: 1, , , , 2373
NHibernate.Loader.Loader: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Loader.Loader - Initializing object from DataReader: 2373
NHibernate.Loader.Loader: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Loader.Loader - Hydrating entity: KBR.LAPD.DocumentManagement.Entities.Attribute#2373
NHibernate.Impl.SessionImpl: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Impl.SessionImpl - Version: 0
NHibernate.Loader.Loader: 2006-05-19 13:44:24,291 [5092] DEBUG NHibernate.Loader.Loader - found row of collection: [KBR.LAPD.DocumentManagement.Entities.Document.Attributes#2161]