EOS-WebAPI/packages/EntityFramework6.Npgsql.3.1.1/lib/net45/EntityFramework6.Npgsql.xml
Nidhi Bhargava d0ac8a7790 Code Commit
2025-09-04 17:30:22 +05:30

1544 lines
72 KiB
XML

<?xml version="1.0"?>
<doc>
<assembly>
<name>EntityFramework6.Npgsql</name>
</assembly>
<members>
<member name="T:Npgsql.NpgsqlConnectionFactory">
<summary>
Instances of this class are used to create DbConnection objects for Postgresql
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionFactory.CreateConnection(System.String)">
<summary>
Creates a connection for Postgresql for the given connection string.
</summary>
<param name="nameOrConnectionString">The connection string.</param>
<returns>An initialized DbConnection.</returns>
</member>
<member name="T:Npgsql.NpgsqlMigrationSqlGenerator">
<summary>
Used to generate migration sql
</summary>
</member>
<member name="M:Npgsql.NpgsqlMigrationSqlGenerator.Generate(System.Collections.Generic.IEnumerable{System.Data.Entity.Migrations.Model.MigrationOperation},System.String)">
<summary>
Generates the migration sql.
</summary>
<param name="migrationOperations">The operations in the migration</param>
<param name="providerManifestToken">The provider manifest token used for server versioning.</param>
</member>
<member name="M:Npgsql.NpgsqlMigrationSqlGenerator.GetTableNameFromFullTableName(System.String)">
<summary>
Removes schema prefix e.g. "dto.Blogs" returns "Blogs" and "Posts" returns "Posts"
</summary>
<param name="tableName"></param>
<returns></returns>
</member>
<member name="T:Npgsql.NpgsqlRankingNormalization">
<summary>
Specifies whether and how a document's length should impact its rank.
This is used with the ranking functions in <see cref="T:Npgsql.NpgsqlTextFunctions" />.
See http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-RANKING
for more information about the behaviors that are controlled by this value.
</summary>
</member>
<member name="F:Npgsql.NpgsqlRankingNormalization.Default">
<summary>
Ignores the document length.
</summary>
</member>
<member name="F:Npgsql.NpgsqlRankingNormalization.DivideBy1PlusLogLength">
<summary>
Divides the rank by 1 + the logarithm of the document length.
</summary>
</member>
<member name="F:Npgsql.NpgsqlRankingNormalization.DivideByLength">
<summary>
Divides the rank by the document length.
</summary>
</member>
<member name="F:Npgsql.NpgsqlRankingNormalization.DivideByMeanHarmonicDistanceBetweenExtents">
<summary>
Divides the rank by the mean harmonic distance between extents (this is implemented only by ts_rank_cd).
</summary>
</member>
<member name="F:Npgsql.NpgsqlRankingNormalization.DivideByUniqueWordCount">
<summary>
Divides the rank by the number of unique words in document.
</summary>
</member>
<member name="F:Npgsql.NpgsqlRankingNormalization.DividesBy1PlusLogUniqueWordCount">
<summary>
Divides the rank by 1 + the logarithm of the number of unique words in document.
</summary>
</member>
<member name="F:Npgsql.NpgsqlRankingNormalization.DivideByItselfPlusOne">
<summary>
Divides the rank by itself + 1.
</summary>
</member>
<member name="T:Npgsql.NpgsqlTextFunctions">
<summary>
Use this class in LINQ queries to generate full-text search expressions using tsvector and tsquery.
None of these functions can be called directly.
See http://www.postgresql.org/docs/current/static/functions-textsearch.html for the latest documentation.
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.AsTsVector(System.String)">
<summary>
Cast <paramref name="vector" /> to the tsvector data type.
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.ToTsVector(System.String)">
<summary>
Reduce <paramref name="document" /> to tsvector.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-PARSING-DOCUMENTS
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.ToTsVector(System.String,System.String)">
<summary>
Reduce <paramref name="document" /> to tsvector using the text search configuration specified
by <paramref name="config" />.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-PARSING-DOCUMENTS
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.AsTsQuery(System.String)">
<summary>
Cast <paramref name="query" /> to the tsquery data type.
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.PlainToTsQuery(System.String)">
<summary>
Produce tsquery from <paramref name="query" /> ignoring punctuation.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-PARSING-QUERIES
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.PlainToTsQuery(System.String,System.String)">
<summary>
Produce tsquery from <paramref name="query" /> ignoring punctuation and using the text search
configuration specified by <paramref name="config" />.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-PARSING-QUERIES
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.ToTsQuery(System.String)">
<summary>
Normalize words in <paramref name="query" /> and convert to tsquery. If your input
contains punctuation that should not be treated as text search operators, use
<see cref="M:Npgsql.NpgsqlTextFunctions.PlainToTsQuery(System.String)" /> instead.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-PARSING-QUERIES
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.ToTsQuery(System.String,System.String)">
<summary>
Normalize words in <paramref name="query" /> and convert to tsquery using the text search
configuration specified by <paramref name="config" />. If your input contains punctuation
that should not be treated as text search operators, use <see cref="M:Npgsql.NpgsqlTextFunctions.PlainToTsQuery(System.String,System.String)" />
instead.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-PARSING-QUERIES
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.QueryAnd(System.String,System.String)">
<summary>
AND tsquerys together. Generates the "&amp;&amp;" operator.
http://www.postgresql.org/docs/current/static/textsearch-features.html#TEXTSEARCH-MANIPULATE-TSQUERY
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.QueryOr(System.String,System.String)">
<summary>
OR tsquerys together. Generates the "||" operator.
http://www.postgresql.org/docs/current/static/textsearch-features.html#TEXTSEARCH-MANIPULATE-TSQUERY
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.QueryNot(System.String)">
<summary>
Negate a tsquery. Generates the "!!" operator.
http://www.postgresql.org/docs/current/static/textsearch-features.html#TEXTSEARCH-MANIPULATE-TSQUERY
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.QueryContains(System.String,System.String)">
<summary>
Returns whether <paramref name="tsquery1" /> contains <paramref name="tsquery2" />.
Generates the "@&gt;" operator.
http://www.postgresql.org/docs/current/static/functions-textsearch.html
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.QueryIsContained(System.String,System.String)">
<summary>
Returns whether <paramref name="tsquery1" /> is contained within <paramref name="tsquery2" />.
Generates the "&lt;@" operator.
http://www.postgresql.org/docs/current/static/functions-textsearch.html
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.Match(System.String,System.String)">
<summary>
This method generates the "@@" match operator.
http://www.postgresql.org/docs/current/static/textsearch-intro.html#TEXTSEARCH-MATCHING
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.SetWeight(System.String,Npgsql.NpgsqlWeightLabel)">
<summary>
Assign weight to each element of <paramref name="tsvector" /> and return a new
weighted tsvector.
http://www.postgresql.org/docs/current/static/textsearch-features.html#TEXTSEARCH-MANIPULATE-TSVECTOR
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.Length(System.String)">
<summary>
Returns the number of lexemes in <paramref name="tsvector" />.
http://www.postgresql.org/docs/current/static/textsearch-features.html#TEXTSEARCH-MANIPULATE-TSVECTOR
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.NumNode(System.String)">
<summary>
Returns the number of lexemes plus operators in <paramref name="tsquery" />.
http://www.postgresql.org/docs/current/static/textsearch-features.html#TEXTSEARCH-MANIPULATE-TSQUERY
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.Strip(System.String)">
<summary>
Removes weights and positions from <paramref name="tsvector" /> and returns
a new stripped tsvector.
http://www.postgresql.org/docs/current/static/textsearch-features.html#TEXTSEARCH-MANIPULATE-TSVECTOR
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.QueryTree(System.String)">
<summary>
Get indexable part of <paramref name="query" />.
http://www.postgresql.org/docs/current/static/textsearch-features.html#TEXTSEARCH-MANIPULATE-TSQUERY
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsHeadline(System.String,System.String,System.String)">
<summary>
Returns a string suitable for display containing a query match.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-HEADLINE
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsHeadline(System.String,System.String,System.String,System.String)">
<summary>
Returns a string suitable for display containing a query match using the text
search configuration specified by <paramref name="config" />.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-HEADLINE
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsRank(System.String,System.String)">
<summary>
Calculates the rank of <paramref name="vector" /> for <paramref name="query" />.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-RANKING
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsRank(System.String,System.String,Npgsql.NpgsqlRankingNormalization)">
<summary>
Calculates the rank of <paramref name="vector" /> for <paramref name="query" /> while normalizing
the result according to the behaviors specified by <paramref name="normalization" />.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-RANKING
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsRank(System.Single,System.Single,System.Single,System.Single,System.String,System.String)">
<summary>
Calculates the rank of <paramref name="vector" /> for <paramref name="query" /> with custom
weighting for word instances depending on their labels (D, C, B or A).
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-RANKING
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsRank(System.Single,System.Single,System.Single,System.Single,System.String,System.String,Npgsql.NpgsqlRankingNormalization)">
<summary>
Calculates the rank of <paramref name="vector" /> for <paramref name="query" /> while normalizing
the result according to the behaviors specified by <paramref name="normalization" />
and using custom weighting for word instances depending on their labels (D, C, B or A).
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-RANKING
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsRankCd(System.String,System.String)">
<summary>
Calculates the rank of <paramref name="vector" /> for <paramref name="query" /> using the cover
density method.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-RANKING
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsRankCd(System.String,System.String,Npgsql.NpgsqlRankingNormalization)">
<summary>
Calculates the rank of <paramref name="vector" /> for <paramref name="query" /> using the cover
density method while normalizing the result according to the behaviors specified by
<paramref name="normalization" />.
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-RANKING
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsRankCd(System.Single,System.Single,System.Single,System.Single,System.String,System.String)">
<summary>
Calculates the rank of <paramref name="vector" /> for <paramref name="query" /> using the cover
density method with custom weighting for word instances depending on their labels (D, C, B or A).
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-RANKING
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsRankCd(System.Single,System.Single,System.Single,System.Single,System.String,System.String,Npgsql.NpgsqlRankingNormalization)">
<summary>
Calculates the rank of <paramref name="vector" /> for <paramref name="query" /> using the cover density
method while normalizing the result according to the behaviors specified by <paramref name="normalization" />
and using custom weighting for word instances depending on their labels (D, C, B or A).
http://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-RANKING
</summary>
</member>
<member name="M:Npgsql.NpgsqlTextFunctions.TsRewrite(System.String,System.String,System.String)">
<summary>
Searchs <paramref name="query" /> for occurrences of <paramref name="target" />, and replaces
each occurrence with a <paramref name="substitute" />. All parameters are of type tsquery.
http://www.postgresql.org/docs/current/static/textsearch-features.html#TEXTSEARCH-MANIPULATE-TSQUERY
</summary>
</member>
<member name="T:Npgsql.NpgsqlTypeFunctions">
<summary>
Use this class in LINQ queries to emit type manipulation SQL fragments.
</summary>
</member>
<member name="M:Npgsql.NpgsqlTypeFunctions.Cast(System.String,System.String)">
<summary>
Emits an explicit cast for unknown types sent as strings to their correct postgresql type.
</summary>
</member>
<member name="T:Npgsql.NpgsqlWeightLabel">
<summary>
Label given to positions in vectors.
</summary>
</member>
<member name="F:Npgsql.NpgsqlWeightLabel.D">
<summary>
D (Default).
</summary>
</member>
<member name="F:Npgsql.NpgsqlWeightLabel.C">
<summary>
C
</summary>
</member>
<member name="F:Npgsql.NpgsqlWeightLabel.B">
<summary>
B
</summary>
</member>
<member name="F:Npgsql.NpgsqlWeightLabel.A">
<summary>
A
</summary>
</member>
<member name="T:Npgsql.Spatial.PostgisDataReader">
<summary>
A postgis geometry service API.
</summary>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.#ctor(Npgsql.Spatial.PostgisServices,Npgsql.NpgsqlDataReader)">
<summary>
Creates a new instance of postgis data reader using a specific instance of PostgisService.
</summary>
<param name="svcs">The service provider that DbGeometry instances will use.</param>
<param name="rdr">The underlying data reader.</param>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.#ctor(Npgsql.NpgsqlDataReader)">
<summary>
Creates a new instance of postgis data reader.
</summary>
<param name="rdr">The underlying data reader.</param>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetGeography(System.Int32)">
<summary>
Get the DbGeography value of a column, given its zero-based ordinal.
</summary>
<param name="ordinal"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetGeometry(System.Int32)">
<summary>
Get the DbGeometry value of a column, given its zero-based ordinal.
</summary>
<param name="ordinal"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.IsGeometryColumn(System.Int32)">
<summary>
Get the value indicating wether a column is a Geometry value, given its zero-based ordinal.
</summary>
<param name="ordinal"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.IsGeographyColumn(System.Int32)">
<summary>
Get the value indicating wether a column is a Geography value, given its zero-based ordinal.
</summary>
<param name="ordinal"></param>
<returns></returns>
</member>
<member name="P:Npgsql.Spatial.PostgisDataReader.Depth">
<summary>
Gets a value indicating the depth of nesting of the current row. Always Zero.
</summary>
</member>
<member name="P:Npgsql.Spatial.PostgisDataReader.IsClosed">
<summary>
Gets a value indicating wether the data reader is closed.
</summary>
</member>
<member name="P:Npgsql.Spatial.PostgisDataReader.RecordsAffected">
<summary>
Gets the number of row affected by the SQL statement.
</summary>
</member>
<member name="P:Npgsql.Spatial.PostgisDataReader.FieldCount">
<summary>
Gets the number of columns in the current row.
</summary>
</member>
<member name="P:Npgsql.Spatial.PostgisDataReader.Item(System.String)">
<summary>
Gets the value of the specified column name of the current row.
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="P:Npgsql.Spatial.PostgisDataReader.Item(System.Int32)">
<summary>
Gets the value of the specified column index of the current row.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.Close">
<summary>
Close the underlying datareader object.
</summary>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetSchemaTable">
<summary>
Returns a DataTable which contains metadata about the current row.
</summary>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.NextResult">
<summary>
Advances the reader to the next result when reading data from a batch of statements.
</summary>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.Read">
<summary>
Advances the reader to the next record in a result set.
</summary>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.Dispose">
<summary>
Frees the resources hold by the data reader.
</summary>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetName(System.Int32)">
<summary>
Gets the name of a column, given a zero based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetDataTypeName(System.Int32)">
<summary>
Gets the data type name of a column, given a zero based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetFieldType(System.Int32)">
<summary>
Gets the System.Type of a column, given a zero based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetValue(System.Int32)">
<summary>
Gets the value of a column, given a zero based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetValues(System.Object[])">
<summary>
Populates an array of objects with the values of the current row.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetOrdinal(System.String)">
<summary>
Gets the column ordinal given the column name.
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetBoolean(System.Int32)">
<summary>
Get the value of a column as a boolean, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetByte(System.Int32)">
<summary>
Get the value of a column as a byte, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
<summary>
Populates a byte array with the value of a column, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetChar(System.Int32)">
<summary>
Get the value of a column as a char, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetGuid(System.Int32)">
<summary>
Get the value of a column as a GUID, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetInt16(System.Int32)">
<summary>
Get the value of a column as an int16, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetInt32(System.Int32)">
<summary>
Get the value of a column as an int32, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetInt64(System.Int32)">
<summary>
Get the value of a column as an int64, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetFloat(System.Int32)">
<summary>
Get the value of a column as a float, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetDouble(System.Int32)">
<summary>
Get the value of a column as a double, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetString(System.Int32)">
<summary>
Get the value of a column as a string, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetDecimal(System.Int32)">
<summary>
Get the value of a column as a decimal, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetDateTime(System.Int32)">
<summary>
Get the value of a column as a datetime, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.GetData(System.Int32)">
<summary>
Returns a DbDataReader of a column, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisDataReader.IsDBNull(System.Int32)">
<summary>
Get the value indicating wether the column contains non-existent or missing value, given its zero-based ordinal.
</summary>
<param name="i"></param>
<returns></returns>
</member>
<member name="T:Npgsql.Spatial.PostgisServices">
<summary>
A class exposing spatial services.
</summary>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.AsBinary(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the well known binary value of the geometry input.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.AsBinary(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the well known binary value of the geography input.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.AsGml(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the geographical markup language representation of the geometry input.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.AsGml(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the geographical markup language representation of the geography input.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.AsText(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the well known text representation of the geometry input.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.AsText(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the well known text representation of the geography input.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Buffer(System.Data.Entity.Spatial.DbGeometry,System.Double)">
<summary>
Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance.
</summary>
<param name="geometryValue"></param>
<param name="distance"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Buffer(System.Data.Entity.Spatial.DbGeography,System.Double)">
<summary>
Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance.
Calculations are in the Spatial Reference System of this Geometry. Uses a planar transform wrapper.
</summary>
<param name="geographyValue"></param>
<param name="distance"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Contains(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns true if and only if no points of B lie in the exterior of A, and at least one point of the interior of B lies in the interior of A
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.CreateProviderValue(System.Data.Entity.Spatial.DbGeometryWellKnownValue)">
<summary>
</summary>
<param name="wellKnownValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.CreateProviderValue(System.Data.Entity.Spatial.DbGeographyWellKnownValue)">
<summary>
</summary>
<param name="wellKnownValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.CreateWellKnownValue(System.Data.Entity.Spatial.DbGeometry)">
<summary>
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.CreateWellKnownValue(System.Data.Entity.Spatial.DbGeography)">
<summary>
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Crosses(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns TRUE if the supplied geometries have some, but not all, interior points in commo
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Difference(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns a geometry that represents that part of geometry A that does not intersect with geometry B.
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Difference(System.Data.Entity.Spatial.DbGeography,System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns a geometry that represents that part of geometry A that does not intersect with geometry B.
</summary>
<param name="geographyValue"></param>
<param name="otherGeography"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Disjoint(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns TRUE if the Geometries do not "spatially intersect" - if they do not share any space together.
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Disjoint(System.Data.Entity.Spatial.DbGeography,System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns TRUE if the Geometries do not "spatially intersect" - if they do not share any space together.
</summary>
<param name="geographyValue"></param>
<param name="otherGeography"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Distance(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the 2-dimensional cartesian minimum distance (based on spatial ref) between two geometries in projected units.
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Distance(System.Data.Entity.Spatial.DbGeography,System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the 2-dimensional cartesian minimum distance (based on spatial ref) between two geometries in projected units.
</summary>
<param name="geographyValue"></param>
<param name="otherGeography"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.ElementAt(System.Data.Entity.Spatial.DbGeometry,System.Int32)">
<summary>
Given a geometry collection, returns the index-nth geometry.
</summary>
<param name="geometryValue"></param>
<param name="index"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.ElementAt(System.Data.Entity.Spatial.DbGeography,System.Int32)">
<summary>
Given a geography collection, returns the index-nth geography.
</summary>
<param name="geographyValue"></param>
<param name="index"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyCollectionFromBinary(System.Byte[],System.Int32)">
<summary>
</summary>
<param name="geographyCollectionWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyCollectionFromText(System.String,System.Int32)">
<summary>
</summary>
<param name="geographyCollectionWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyFromBinary(System.Byte[])">
<summary>
</summary>
<param name="wellKnownBinary"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyFromBinary(System.Byte[],System.Int32)">
<summary>
</summary>
<param name="wellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyFromGml(System.String)">
<summary>
</summary>
<param name="geographyMarkup"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyFromGml(System.String,System.Int32)">
<summary>
</summary>
<param name="geographyMarkup"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyFromProviderValue(System.Object)">
<summary>
</summary>
<param name="providerValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyFromText(System.String)">
<summary>
</summary>
<param name="wellKnownText"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyFromText(System.String,System.Int32)">
<summary>
</summary>
<param name="wellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyLineFromBinary(System.Byte[],System.Int32)">
<summary>
</summary>
<param name="lineWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyLineFromText(System.String,System.Int32)">
<summary>
</summary>
<param name="lineWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyMultiLineFromBinary(System.Byte[],System.Int32)">
<summary>
</summary>
<param name="multiLineWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyMultiLineFromText(System.String,System.Int32)">
<summary>
</summary>
<param name="multiLineWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyMultiPointFromBinary(System.Byte[],System.Int32)">
<summary>
</summary>
<param name="multiPointWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyMultiPointFromText(System.String,System.Int32)">
<summary>
</summary>
<param name="multiPointWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyMultiPolygonFromBinary(System.Byte[],System.Int32)">
<summary>
</summary>
<param name="multiPolygonWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyMultiPolygonFromText(System.String,System.Int32)">
<summary>
</summary>
<param name="multiPolygonWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyPointFromBinary(System.Byte[],System.Int32)">
<summary>
</summary>
<param name="pointWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyPointFromText(System.String,System.Int32)">
<summary>
</summary>
<param name="pointWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyPolygonFromBinary(System.Byte[],System.Int32)">
<summary>
</summary>
<param name="polygonWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeographyPolygonFromText(System.String,System.Int32)">
<summary>
</summary>
<param name="polygonWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryCollectionFromBinary(System.Byte[],System.Int32)">
<summary>
Get the geometry collection from a well know binary representation.
</summary>
<param name="geometryCollectionWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryCollectionFromText(System.String,System.Int32)">
<summary>
Get the geometry collection from a well know binary representation.
</summary>
<param name="geometryCollectionWellKnownText"></param>
<param name="coordinateSystemId"></param>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryFromBinary(System.Byte[])">
<summary>
Get the geometry from its well known binary representation
</summary>
<param name="wellKnownBinary"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryFromBinary(System.Byte[],System.Int32)">
<summary>
Get the geometry from its well known binary representation
</summary>
<param name="wellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryFromGml(System.String)">
<summary>
Get the geometry from a geometic markup language representation.
</summary>
<param name="geometryMarkup"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryFromGml(System.String,System.Int32)">
<summary>
Get the geometry from a geometic markup language representation.
</summary>
<param name="geometryMarkup"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryFromProviderValue(System.Object)">
<summary>
Wrap a npgsql geometry in a DbGeometry structure.
</summary>
<param name="providerValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryFromText(System.String)">
<summary>
Get the geometry from a well known text value.
</summary>
<param name="wellKnownText"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryFromText(System.String,System.Int32)">
<summary>
Get the geometry from a well known text value.
</summary>
<param name="wellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryLineFromBinary(System.Byte[],System.Int32)">
<summary>
Get a line from its well known binary value.
</summary>
<param name="lineWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryLineFromText(System.String,System.Int32)">
<summary>
Get a line from its well known text value.
</summary>
<param name="lineWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryMultiLineFromBinary(System.Byte[],System.Int32)">
<summary>
Get a multiline from its well known binary value.
</summary>
<param name="multiLineWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryMultiLineFromText(System.String,System.Int32)">
<summary>
Get a multiline from a well known text value.
</summary>
<param name="multiLineWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryMultiPointFromBinary(System.Byte[],System.Int32)">
<summary>
Get a multipoint from its well known binaryrepresentation.
</summary>
<param name="multiPointWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryMultiPointFromText(System.String,System.Int32)">
<summary>
Get a multipoint from its well known text representation.
</summary>
<param name="multiPointWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryMultiPolygonFromBinary(System.Byte[],System.Int32)">
<summary>
Get a multipolygon from its well known binary value.
</summary>
<param name="multiPolygonWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryMultiPolygonFromText(System.String,System.Int32)">
<summary>
Get a multipolygon from its well known text value.
</summary>
<param name="multiPolygonKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryPointFromBinary(System.Byte[],System.Int32)">
<summary>
Get a point from its well known binary value.
</summary>
<param name="pointWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryPointFromText(System.String,System.Int32)">
<summary>
Get a point from its well known text value.
</summary>
<param name="pointWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryPolygonFromBinary(System.Byte[],System.Int32)">
<summary>
Get a polygon from its well known binary value.
</summary>
<param name="polygonWellKnownBinary"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GeometryPolygonFromText(System.String,System.Int32)">
<summary>
Get a polygon from its well known text value.
</summary>
<param name="polygonWellKnownText"></param>
<param name="coordinateSystemId"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetArea(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the area of the surface if it is a polygon or multi-polygon.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetArea(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the area of the surface if it is a polygon or multi-polygon.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetBoundary(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the closure of the combinatorial boundary of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetCentroid(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the centroid of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetConvexHull(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Get the convex hull of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetCoordinateSystemId(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Get the SRID of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetCoordinateSystemId(System.Data.Entity.Spatial.DbGeography)">
<summary>
Get the SRID of the geography.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetDimension(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Get the geometry dimension.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetDimension(System.Data.Entity.Spatial.DbGeography)">
<summary>
Get the geograpy dimension.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetElementCount(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Get the element count of the geometry collection.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetElementCount(System.Data.Entity.Spatial.DbGeography)">
<summary>
Get the element count of the geometry collection.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetElevation(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the elevation of the geometry
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetElevation(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the elevation of the geography.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetEndPoint(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Get the endpoint of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetEndPoint(System.Data.Entity.Spatial.DbGeography)">
<summary>
Get the endpoint of the geography.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetEnvelope(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Get the envelope of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetExteriorRing(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Get the exterior ring of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetInteriorRingCount(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Get the ring count of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetIsClosed(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Check if the geometry is closed.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetIsClosed(System.Data.Entity.Spatial.DbGeography)">
<summary>
Check if the geography is closed;
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetIsEmpty(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Chekc if the geometry is empty.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetIsEmpty(System.Data.Entity.Spatial.DbGeography)">
<summary>
Check if the geography is empty.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetIsRing(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Check if the geometry is a linestring, simple and closed.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetIsSimple(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Check if the geometry is simple.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetIsValid(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Check if the geometry is valid.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetLatitude(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the latitude of the geography.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetLength(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the length of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetLength(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the length of the geography.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetLongitude(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the longitutde of the geography.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetMeasure(System.Data.Entity.Spatial.DbGeometry)">
<summary>
/
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetMeasure(System.Data.Entity.Spatial.DbGeography)">
<summary>
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetPointCount(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the point count of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetPointCount(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the point count of the geography.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetPointOnSurface(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns a POINT guaranteed to lie on the geometry surface.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetSpatialTypeName(System.Data.Entity.Spatial.DbGeometry)">
<summary>
returns the spatial type of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetSpatialTypeName(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the spatial type of the geography.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetStartPoint(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the start point of the geometry.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetStartPoint(System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the start point of the geography.
</summary>
<param name="geographyValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetXCoordinate(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns a point X coordinate.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.GetYCoordinate(System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns a point Y coordinate.
</summary>
<param name="geometryValue"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.InteriorRingAt(System.Data.Entity.Spatial.DbGeometry,System.Int32)">
<summary>
Returns the index-nth interior ring of the geometry
</summary>
<param name="geometryValue"></param>
<param name="index"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Intersection(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns the intersection of two geometries.
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Intersection(System.Data.Entity.Spatial.DbGeography,System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns the intersection of two geographies.
</summary>
<param name="geographyValue"></param>
<param name="otherGeography"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Intersects(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns TRUE if the Geometries/Geography "spatially intersect in 2D" - (share any portion of space) and FALSE if they don't (they are Disjoint).
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Intersects(System.Data.Entity.Spatial.DbGeography,System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns TRUE if the Geometries/Geography "spatially intersect in 2D" - (share any portion of space) and FALSE if they don't (they are Disjoint).
For geography -- tolerance is 0.00001 meters (so any points that close are considered to intersect)
</summary>
<param name="geographyValue"></param>
<param name="otherGeography"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Overlaps(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns TRUE if the Geometries share space, are of the same dimension, but are not completely contained by each other.
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.PointAt(System.Data.Entity.Spatial.DbGeometry,System.Int32)">
<summary>
???
</summary>
<param name="geometryValue"></param>
<param name="index"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.PointAt(System.Data.Entity.Spatial.DbGeography,System.Int32)">
<summary>
???
</summary>
<param name="geographyValue"></param>
<param name="index"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Relate(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry,System.String)">
<summary>
Returns true if this Geometry is spatially related to anotherGeometry,
by testing for intersections between the Interior, Boundary and Exterior of the two geometries
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<param name="matrix"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.SpatialEquals(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns true if the given geometries represent the same geometry. Directionality is ignored.
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.SpatialEquals(System.Data.Entity.Spatial.DbGeography,System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns true if the given geometries represent the same geometry. Directionality is ignored.
</summary>
<param name="geographyValue"></param>
<param name="otherGeography"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.SymmetricDifference(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns a geometry that represents the portions of A and B that do not intersect.
It is called a symmetric difference because ST_SymDifference(A,B) = ST_SymDifference(B,A).
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.SymmetricDifference(System.Data.Entity.Spatial.DbGeography,System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns a geometry that represents the portions of A and B that do not intersect.
It is called a symmetric difference because ST_SymDifference(A,B) = ST_SymDifference(B,A).
</summary>
<param name="geographyValue"></param>
<param name="otherGeography"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Touches(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns TRUE if the geometries have at least one point in common, but their interiors do not intersect.
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Union(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns a geometry that represents the point set union of the Geometries.
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Union(System.Data.Entity.Spatial.DbGeography,System.Data.Entity.Spatial.DbGeography)">
<summary>
Returns a geometry that represents the point set union of the Geometries.
</summary>
<param name="geographyValue"></param>
<param name="otherGeography"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.Within(System.Data.Entity.Spatial.DbGeometry,System.Data.Entity.Spatial.DbGeometry)">
<summary>
Returns true if the geometry A is completely inside geometry B
</summary>
<param name="geometryValue"></param>
<param name="otherGeometry"></param>
<returns></returns>
</member>
<member name="M:Npgsql.Spatial.PostgisServices.SetConnection(Npgsql.NpgsqlConnection)">
<summary>
Set the provider connection
</summary>
<param name="c"></param>
</member>
<member name="T:Npgsql.SqlGenerators.NameAndInputExpression">
<summary>
Represents an InputExpression and what alias it will have when used in a FROM clause
</summary>
</member>
<member name="T:Npgsql.SqlGenerators.PendingProjectsNode">
<summary>
A tree of subqueries, used when evaluating SQL text for DbPropertyExpressions in SqlSelectGenerator.
See SqlSelectGenerator.Visit(DbPropertyExpression) for more information.
</summary>
</member>
<member name="M:Npgsql.SqlGenerators.SqlBaseGenerator.DateAdd(System.String,System.Collections.Generic.IList{System.Data.Entity.Core.Common.CommandTrees.DbExpression})">
<summary>
PostgreSQL has no direct functions to implements DateTime canonical functions
http://msdn.microsoft.com/en-us/library/bb738626.aspx
http://msdn.microsoft.com/en-us/library/bb738626.aspx
but we can use workaround:
expression + number * INTERVAL '1 number_type'
where number_type is the number type (days, years and etc)
</summary>
<param name="functionName"></param>
<param name="args"></param>
<returns></returns>
</member>
<member name="T:Npgsql.SqlGenerators.StringPair">
<summary>
Used for lookup in a Dictionary, since Tuple is not available in .NET 3.5
</summary>
</member>
<member name="M:Npgsql.SqlGenerators.OperatorExpression.Negate(Npgsql.SqlGenerators.VisitedExpression,System.Boolean)">
<summary>
Negates an expression.
If possible, replaces the operator of exp if exp is a negatable OperatorExpression,
else return a new OperatorExpression of type Not that wraps exp.
</summary>
</member>
</members>
</doc>