Skip to content

Commit ad12e02

Browse files
committed
Make PersistenceState byte enum
1 parent d282187 commit ad12e02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Orm/Xtensive.Orm/Orm/PersistenceState.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Xtensive.Orm
99
/// <summary>
1010
/// Defines possible persistence states of the entities.
1111
/// </summary>
12-
public enum PersistenceState
12+
public enum PersistenceState : byte
1313
{
1414
/// <summary>
1515
/// The entity is synchronized with the database (there are no unsaved changes).
@@ -28,4 +28,4 @@ public enum PersistenceState
2828
/// </summary>
2929
Removed = 3,
3030
}
31-
}
31+
}

0 commit comments

Comments
 (0)