Ejemplo n.º 1
0
 public static bool IsUtc(this IMutableProperty property) =>
 ((bool?)property.FindAnnotation(IsUtcAnnotation)?.Value) ?? true;
Ejemplo n.º 2
0
 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);
 }