EdmFunctions.ToUpper(DbExpression) Método

Definición

Crea un DbFunctionExpression objeto que invoca la función 'ToUpper' canónica con el argumento especificado, que debe tener un tipo de resultado de cadena. El tipo de resultado de la expresión también es string.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ ToUpper(System::Data::Common::CommandTrees::DbExpression ^ stringArgument);
public static System.Data.Common.CommandTrees.DbFunctionExpression ToUpper(this System.Data.Common.CommandTrees.DbExpression stringArgument);
static member ToUpper : System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function ToUpper (stringArgument As DbExpression) As DbFunctionExpression

Parámetros

stringArgument
DbExpression

Expresión que especifica la cadena que se debe convertir en mayúsculas.

Devoluciones

Nuevo DbFunctionExpression que devuelve el valor de stringArgument convertido en mayúsculas.

Excepciones

stringArgument es null.

stringArgument no es válido.

Se aplica a