SpatialEdmFunctions.GeometryFromGml Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
GeometryFromGml(DbExpression) |
Crea un oggetto DbFunctionExpression che richiama la funzione 'GeometryFromGml' canonica con l'argomento specificato, che deve presentare un tipo di risultato String. Il tipo di risultato dell'espressione è Edm.Geometry. |
GeometryFromGml(DbExpression, DbExpression) |
Crea un oggetto DbFunctionExpression che richiama la funzione 'GeometryFromGml' canonica con gli argomenti specificati. geometryMarkup deve avere un tipo di risultato stringa, mentre coordinateSystemId deve avere un tipo di risultato numerico intero. Il tipo di risultato dell'espressione è Edm.Geometry. |
GeometryFromGml(DbExpression)
Crea un oggetto DbFunctionExpression che richiama la funzione 'GeometryFromGml' canonica con l'argomento specificato, che deve presentare un tipo di risultato String. Il tipo di risultato dell'espressione è Edm.Geometry.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Justification="Abbreviation more meaningful than what it stands for", MessageId="Gml")]
public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression GeometryFromGml (System.Data.Entity.Core.Common.CommandTrees.DbExpression geometryMarkup);
static member GeometryFromGml : System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
Public Function GeometryFromGml (geometryMarkup As DbExpression) As DbFunctionExpression
Parametri
- geometryMarkup
- DbExpression
Espressione che fornisce la rappresentazione Geography Markup Language (GML) del valore geometrico.
Restituisce
Nuovo DbFunctionExpression che restituisce un nuovo valore di posizione geometrica basato sul valore specificato con l'identificatore del sistema di coordinate predefinito (SRID) del provider sottostante.
- Attributi
Si applica a
GeometryFromGml(DbExpression, DbExpression)
Crea un oggetto DbFunctionExpression che richiama la funzione 'GeometryFromGml' canonica con gli argomenti specificati. geometryMarkup deve avere un tipo di risultato stringa, mentre coordinateSystemId deve avere un tipo di risultato numerico intero. Il tipo di risultato dell'espressione è Edm.Geometry.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Justification="Abbreviation more meaningful than what it stands for", MessageId="Gml")]
public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression GeometryFromGml (System.Data.Entity.Core.Common.CommandTrees.DbExpression geometryMarkup, System.Data.Entity.Core.Common.CommandTrees.DbExpression coordinateSystemId);
static member GeometryFromGml : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
Public Function GeometryFromGml (geometryMarkup As DbExpression, coordinateSystemId As DbExpression) As DbFunctionExpression
Parametri
- geometryMarkup
- DbExpression
Espressione che fornisce la rappresentazione Geography Markup Language (GML) del valore geometrico.
- coordinateSystemId
- DbExpression
Espressione che rappresenta l'ID del sistema di coordinate (SRID) del sistema di coordinate del valore geometrico.
Restituisce
Nuovo DbFunctionExpression che restituisce un nuovo valore geometrico basato sui valori specificati.
- Attributi