/// <summary>
 /// Allowings the everything.
 /// </summary>
 /// <typeparam name="TProperty">The type of the property.</typeparam>
 /// <typeparam name="TClassType">The type of the type.</typeparam>
 /// <param name="builder">The builder.</param>
 /// <returns></returns>
 public static IPropertyBuilder <TProperty?, TClassType> AllowingEverything <TProperty, TClassType>(this IPropertyBuilder <TProperty?, TClassType> builder)
 => builder
 .AllowingDelete()
 .AllowingEdit()
 .AllowingNew();