Skip to content

Commit e76a755

Browse files
committed
Keep old values for SelectMode enum
1 parent b1d9304 commit e76a755

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/NHibernate/SelectMode.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,6 @@ public enum SelectMode
1919
/// Fetch the entity and its lazy properties.
2020
/// </summary>
2121
FetchLazyProperties,
22-
23-
/// <summary>
24-
/// Fetch lazy property group
25-
/// Note: To fetch single property it must be mapped with unique fetch group (lazy-group)
26-
/// </summary>
27-
FetchProperty,
2822

2923
/// <summary>
3024
/// Only identifier columns are added to select statement. Use it for fetching child objects for already loaded
@@ -42,5 +36,11 @@ public enum SelectMode
4236
/// Skips fetching for eagerly mapped association (no-op for lazy association).
4337
/// </summary>
4438
Skip,
39+
40+
/// <summary>
41+
/// Fetch lazy property group
42+
/// Note: To fetch single property it must be mapped with unique fetch group (lazy-group)
43+
/// </summary>
44+
FetchProperty,
4545
}
4646
}

0 commit comments

Comments
 (0)