Skip to content

Commit b5bc507

Browse files
committed
byte enums
1 parent dd71dd8 commit b5bc507

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Orm/Xtensive.Orm/Orm/Attributes/KeyGeneratorKind.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Xtensive.Orm
99
/// <summary>
1010
/// Specifies key generator type to use for a particular hierarchy.
1111
/// </summary>
12-
public enum KeyGeneratorKind
12+
public enum KeyGeneratorKind : byte
1313
{
1414
/// <summary>
1515
/// No key generator is provided for hierarchy.
@@ -35,4 +35,4 @@ public enum KeyGeneratorKind
3535
/// </summary>
3636
Custom = 2
3737
}
38-
}
38+
}

Orm/Xtensive.Orm/Orm/Model/InheritanceSchema.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace Xtensive.Orm.Model
1010
/// Enumerates all supported 'class to tables mapping' schemes.
1111
/// </summary>
1212
/// <remarks>See M.Fowler - "Patterns of Enterprise Application Architecture".</remarks>
13-
public enum InheritanceSchema
13+
public enum InheritanceSchema : byte
1414
{
1515
/// <summary>
1616
/// Is equal to <see cref="ClassTable"/>.
@@ -30,4 +30,4 @@ public enum InheritanceSchema
3030
/// </summary>
3131
ConcreteTable = 2
3232
}
33-
}
33+
}

0 commit comments

Comments
 (0)