@@ -3684,35 +3684,34 @@ public virtual void AfterReassociate(object entity, ISessionImplementor session)
3684
3684
return true ;
3685
3685
}
3686
3686
3687
- // check the version unsaved-value, if appropriate
3688
- if ( IsVersioned )
3689
- {
3690
- object version = GetVersion ( entity , session . EntityMode ) ;
3691
- // let this take precedence if defined, since it works for
3692
- // assigned identifiers
3693
- bool ? result = entityMetamodel . VersionProperty . UnsavedValue . IsUnsaved ( version ) ;
3694
- if ( result . HasValue )
3695
- {
3696
- return result ;
3697
- }
3698
- }
3699
-
3700
- // check the id unsaved-value
3701
- bool ? result2 = entityMetamodel . IdentifierProperty . UnsavedValue . IsUnsaved ( id ) ;
3702
- if ( result2 . HasValue )
3703
- {
3704
- if ( IdentifierGenerator is Assigned )
3705
- {
3706
- // if using assigned identifier, we can only make assumptions
3707
- // if the value is a known unsaved-value
3708
- if ( result2 . Value )
3709
- return true ;
3710
- }
3711
- else
3712
- {
3713
- return result2 ;
3714
- }
3715
- }
3687
+ // check the id unsaved-value
3688
+ // We do this first so we don't have to hydrate the version property if the id property already gives us the info we need (NH-3505).
3689
+ bool ? result2 = entityMetamodel . IdentifierProperty . UnsavedValue . IsUnsaved ( id ) ;
3690
+ if ( result2 . HasValue )
3691
+ {
3692
+ if ( IdentifierGenerator is Assigned )
3693
+ {
3694
+ // if using assigned identifier, we can only make assumptions
3695
+ // if the value is a known unsaved-value
3696
+ if ( result2 . Value )
3697
+ return true ;
3698
+ }
3699
+ else
3700
+ {
3701
+ return result2 ;
3702
+ }
3703
+ }
3704
+
3705
+ // check the version unsaved-value, if appropriate
3706
+ if ( IsVersioned )
3707
+ {
3708
+ object version = GetVersion ( entity , session . EntityMode ) ;
3709
+ bool ? result = entityMetamodel . VersionProperty . UnsavedValue . IsUnsaved ( version ) ;
3710
+ if ( result . HasValue )
3711
+ {
3712
+ return result ;
3713
+ }
3714
+ }
3716
3715
3717
3716
// check to see if it is in the second-level cache
3718
3717
if ( HasCache )
0 commit comments