Exemple #1
0
 internal static bool IsStrongSpatialTypeKind(PrimitiveTypeKind kind)
 {
     if (!Helper.IsStrongGeometricTypeKind(kind))
     {
         return(Helper.IsStrongGeographicTypeKind(kind));
     }
     return(true);
 }
Exemple #2
0
 internal static bool IsGeographicTypeKind(PrimitiveTypeKind kind)
 {
     if (kind != PrimitiveTypeKind.Geography)
     {
         return(Helper.IsStrongGeographicTypeKind(kind));
     }
     return(true);
 }