File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ namespace NHibernate.Action
4
4
{
5
5
/// <summary>
6
6
/// Acts as a stand-in for an entity identifier which is supposed to be
7
- /// generated on insert (like an IDENTITY column) where the insert needed to
8
- /// be delayed because we were outside a transaction when the persist
9
- /// occurred (save currently still performs the insert).
10
- ///
11
- /// The stand-in is only used within the see cref="NHibernate.Engine.PersistenceContext"
12
- /// in order to distinguish one instance from another; it is never injected into
13
- /// the entity instance or returned to the client...
7
+ /// generated on insert (like an IDENTITY column), when an entity is <c>Persist</c>ed.
8
+ /// <c>Save</c> still performs the insert.
14
9
/// </summary>
10
+ /// <remarks>
11
+ /// The stand-in is only used within the <see cref="NHibernate.Engine.IPersistenceContext"/>
12
+ /// in order to distinguish one instance from another; it is never injected into
13
+ /// the entity instance or returned to the client.
14
+ /// </remarks>
15
15
[ Serializable ]
16
16
public class DelayedPostInsertIdentifier
17
17
{
@@ -53,4 +53,4 @@ public override string ToString()
53
53
return string . Format ( "<delayed:{0}>" , sequence ) ;
54
54
}
55
55
}
56
- }
56
+ }
You can’t perform that action at this time.
0 commit comments