@ -21,7 +21,7 @@ public class EntityPropertyChangeInfo
/// Maximum length of <see cref="PropertyTypeFullName"/> property.
/// Value: 512.
/// </summary>
public static int MaxPropertyTypeFullNameLength = 192;
public static int MaxPropertyTypeFullNameLength = 512;
public virtual string? NewValue { get; set; }
@ -3,9 +3,9 @@
public class EntityChangeConsts
{
/// <summary>
/// Default value: 128
/// Default value: 512
public static int MaxEntityTypeFullNameLength { get; set; } = 128;
public static int MaxEntityTypeFullNameLength { get; set; } = 512;
@ -18,7 +18,7 @@ public class EntityPropertyChangeConsts
public static int MaxPropertyNameLength { get; set; } = 128;
/// Default value: 64
public static int MaxPropertyTypeFullNameLength { get; set; } = 64;
public static int MaxPropertyTypeFullNameLength { get; set; } = 512;
}