From 9d8cb5fcd15f5676d795139b7771f2836770326f Mon Sep 17 00:00:00 2001 From: Yoh Deadfall Date: Fri, 21 Mar 2025 23:57:53 +0300 Subject: [PATCH] Fixed type name casing --- conceptual/EFCore.PG/mapping/full-text-search.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conceptual/EFCore.PG/mapping/full-text-search.md b/conceptual/EFCore.PG/mapping/full-text-search.md index 090bc700..c3f4c025 100644 --- a/conceptual/EFCore.PG/mapping/full-text-search.md +++ b/conceptual/EFCore.PG/mapping/full-text-search.md @@ -168,7 +168,7 @@ EF.Functions.PhraseToTsQuery(string) | [p EF.Functions.PhraseToTsQuery("english", string) | [phraseto_tsquery('english'::regconfig, string)](https://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-PARSING-QUERIES) EF.Functions.WebSearchToTsQuery(string) | [websearch_to_tsquery(string)](https://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-PARSING-QUERIES) EF.Functions.WebSearchToTsQuery("english", string) | [websearch_to_tsquery('english'::regconfig, string)](https://www.postgresql.org/docs/current/static/textsearch-controls.html#TEXTSEARCH-PARSING-QUERIES) -EF.functions.ArrayToTsVector(new[] { "a", "b" }) | [array_to_tsvector(ARRAY\['a', 'b'\])](https://www.postgresql.org/docs/current/functions-textsearch.html#TEXTSEARCH-FUNCTIONS-TABLE) +EF.Functions.ArrayToTsVector(new[] { "a", "b" }) | [array_to_tsvector(ARRAY\['a', 'b'\])](https://www.postgresql.org/docs/current/functions-textsearch.html#TEXTSEARCH-FUNCTIONS-TABLE) NpgsqlTsVector.Parse(string) | [CAST(string AS tsvector)](https://www.postgresql.org/docs/current/static/sql-expressions.html#SQL-SYNTAX-TYPE-CASTS) NpgsqlTsQuery.Parse(string) | [CAST(queryString AS tsquery)](https://www.postgresql.org/docs/current/static/sql-expressions.html#SQL-SYNTAX-TYPE-CASTS) tsvector.Matches(string) | [tsvector @@ plainto_tsquery(string)](https://www.postgresql.org/docs/current/static/textsearch-intro.html#TEXTSEARCH-MATCHING)