SqlSpatialFunctions.Filter Método

Definición

Ofrece un método de intersección rápido de solo índice para determinar si una instancia de geography interseca otra instancia de SqlGeography, suponiendo que haya un índice disponible.

Sobrecargas

Nombre Description
Filter(DbGeography, DbGeography)

Ofrece un método de intersección rápido de solo índice para determinar si una instancia de geography interseca otra instancia de SqlGeography, suponiendo que haya un índice disponible.

Filter(DbGeometry, DbGeometry)

Ofrece un método de intersección rápido de solo índice para determinar si una instancia de geography interseca otra instancia de SqlGeometry, suponiendo que haya un índice disponible.

Filter(DbGeography, DbGeography)

Ofrece un método de intersección rápido de solo índice para determinar si una instancia de geography interseca otra instancia de SqlGeography, suponiendo que haya un índice disponible.

public:
 static Nullable<bool> Filter(System::Data::Spatial::DbGeography ^ geographyValue, System::Data::Spatial::DbGeography ^ geographyOther);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "FILTER")]
public static bool? Filter(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography geographyOther);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "FILTER")>]
static member Filter : System.Data.Spatial.DbGeography * System.Data.Spatial.DbGeography -> Nullable<bool>
Public Shared Function Filter (geographyValue As DbGeography, geographyOther As DbGeography) As Nullable(Of Boolean)

Parámetros

geographyValue
DbGeography

Valor geography.

geographyOther
DbGeography

Otra instancia de geography que se va a comparar con la instancia en la que se invoca Filter.

Devoluciones

true si una instancia de geography posiblemente interseca otra instancia de SqlGeography; de lo contrario, false.

Atributos

Se aplica a

Filter(DbGeometry, DbGeometry)

Ofrece un método de intersección rápido de solo índice para determinar si una instancia de geography interseca otra instancia de SqlGeometry, suponiendo que haya un índice disponible.

public:
 static Nullable<bool> Filter(System::Data::Spatial::DbGeometry ^ geometryValue, System::Data::Spatial::DbGeometry ^ geometryOther);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "FILTER")]
public static bool? Filter(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry geometryOther);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "FILTER")>]
static member Filter : System.Data.Spatial.DbGeometry * System.Data.Spatial.DbGeometry -> Nullable<bool>
Public Shared Function Filter (geometryValue As DbGeometry, geometryOther As DbGeometry) As Nullable(Of Boolean)

Parámetros

geometryValue
DbGeometry

Valor de geometría.

geometryOther
DbGeometry

Otra instancia de geography que se va a comparar con la instancia en la que se invoca Filter.

Devoluciones

true si una instancia de geography posiblemente interseca otra instancia de SqlGeography; de lo contrario, false.

Atributos

Se aplica a