diff --git a/docs/odata-url-conventions/odata-url-conventions.html b/docs/odata-url-conventions/odata-url-conventions.html index 96704811a..7cd10920e 100644 --- a/docs/odata-url-conventions/odata-url-conventions.html +++ b/docs/odata-url-conventions/odata-url-conventions.html @@ -1052,10 +1052,10 @@
concat
The concat
function has three overloads, with the following signatures:
Edm.String concat(Edm.String,...,Edm.String)
-Collection concat(Collection,Collection)
-OrderedCollection concat(OrderedCollection,OrderedCollection)
+Collection concat(Collection,...,Collection)
+OrderedCollection concat(OrderedCollection,...,OrderedCollection)
The concat
function with string parameter values returns a string whose value is the combined text of the strings provided.
The concat function with collection parameter values returns a collection that appends all items of the second collection to the first. If both collections are ordered, the result is also ordered.
+The concat function with collection parameter values returns a collection whose items are the items of the collections provided. If all provided collections are ordered, the result is also ordered.
The concatMethodCallExpr
syntax rule defines how the concat
function is invoked.
Example 69: all customers from Berlin, Germany
diff --git a/docs/odata-url-conventions/odata-url-conventions.md b/docs/odata-url-conventions/odata-url-conventions.md index d11fa65a9..4bc778b1d 100644 --- a/docs/odata-url-conventions/odata-url-conventions.md +++ b/docs/odata-url-conventions/odata-url-conventions.md @@ -1981,16 +1981,16 @@ signatures: ``` Edm.String concat(Edm.String,...,Edm.String) -Collection concat(Collection,Collection) -OrderedCollection concat(OrderedCollection,OrderedCollection) +Collection concat(Collection,...,Collection) +OrderedCollection concat(OrderedCollection,...,OrderedCollection) ``` The `concat` function with string parameter values returns a string whose value is the combined text of the strings provided. The concat function with collection parameter values returns a -collection that appends all items of the second collection to the first. -If both collections are ordered, the result is also ordered. +collection whose items are the items of the collections provided. +If all provided collections are ordered, the result is also ordered. The `concatMethodCallExpr` syntax rule defines how the `concat` function is invoked. diff --git a/odata-url-conventions/5 Query Options.md b/odata-url-conventions/5 Query Options.md index fd9bf96d0..505f57f3f 100644 --- a/odata-url-conventions/5 Query Options.md +++ b/odata-url-conventions/5 Query Options.md @@ -540,16 +540,16 @@ signatures: ``` Edm.String concat(Edm.String,...,Edm.String) -Collection concat(Collection,Collection) -OrderedCollection concat(OrderedCollection,OrderedCollection) +Collection concat(Collection,...,Collection) +OrderedCollection concat(OrderedCollection,...,OrderedCollection) ``` The `concat` function with string parameter values returns a string whose value is the combined text of the strings provided. The concat function with collection parameter values returns a -collection that appends all items of the second collection to the first. -If both collections are ordered, the result is also ordered. +collection whose items are the items of the collections provided. +If all provided collections are ordered, the result is also ordered. The `concatMethodCallExpr` syntax rule defines how the `concat` function is invoked.