EdmFunctions.Concat(DbExpression, DbExpression) Method

Definition

Creates a DbFunctionExpression that invokes the canonical 'Concat' function with the specified arguments, which must each have a string result type. The result type of the expression is string.

C#
public static System.Data.Common.CommandTrees.DbFunctionExpression Concat(this System.Data.Common.CommandTrees.DbExpression string1, System.Data.Common.CommandTrees.DbExpression string2);

Parameters

string1
DbExpression

An expression that specifies the string that should appear first in the concatenated result string.

string2
DbExpression

An expression that specifies the string that should appear second in the concatenated result string.

Returns

A new DbFunctionExpression that produces the concatenated string.

Exceptions

string1 or string2 is null.

string1 or string2 is invalid.

Applies to

Product Versions
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1