public static bool IsUtc(this IMutableProperty property) => ((bool?)property.FindAnnotation(IsUtcAnnotation)?.Value) ?? true;
public static Boolean IsUtc(this IMutableProperty property) => ((Boolean?)property.FindAnnotation(IsUtcAnnotation)?.Value) ?? true;
public static bool IsEndDateColumn(this IMutableProperty property) { return(property.FindAnnotation(TemporalAnnotationNames.SysEndDate) != null); }