SqlFunctions.NChar(Nullable<Int32>) Método

Definición

Devuelve el carácter Unicode correspondiente al código entero dado, tal como se define en el estándar Unicode.

public:
 static System::String ^ NChar(Nullable<int> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "NCHAR")]
public static string NChar (int? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "NCHAR")>]
static member NChar : Nullable<int> -> string
Public Shared Function NChar (arg As Nullable(Of Integer)) As String

Parámetros

arg
Nullable<Int32>

Un código de carácter.

Devoluciones

String

Carácter correspondiente al código del carácter de entrada.

Atributos

Comentarios

No se puede llamar a esta función directamente. Esta función solo puede aparecer dentro de una LINQ to Entities consulta.

Esta función se traduce a una función correspondiente en la base de datos. Para obtener información sobre la función SQL Server correspondiente, vea NCHAR (Transact-SQL).

Se aplica a