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