EdmTypeSemantics.ApplyType Método
Devuelve una referencia a esta definición de tipo de fila.
Espacio de nombres: Microsoft.Data.Edm
Ensamblado: Microsoft.Data.Edm (en Microsoft.Data.Edm.dll)
Sintaxis
'Declaración
<ExtensionAttribute> _
Public Shared Function ApplyType ( _
rowType As IEdmRowType, _
isNullable As Boolean _
) As IEdmRowTypeReference
'Uso
Dim rowType As IEdmRowType
Dim isNullable As Boolean
Dim returnValue As IEdmRowTypeReference
returnValue = rowType.ApplyType(isNullable)
public static IEdmRowTypeReference ApplyType(
this IEdmRowType rowType,
bool isNullable
)
[ExtensionAttribute]
public:
static IEdmRowTypeReference^ ApplyType(
IEdmRowType^ rowType,
bool isNullable
)
static member ApplyType :
rowType:IEdmRowType *
isNullable:bool -> IEdmRowTypeReference
public static function ApplyType(
rowType : IEdmRowType,
isNullable : boolean
) : IEdmRowTypeReference
Parámetros
- rowType
Tipo: Microsoft.Data.Edm.IEdmRowType
Referencia al objeto que realiza la llamada.
- isNullable
Tipo: System.Boolean
Es true para indicar que el tipo al que se hace referencia debe admitir valores NULL; de lo contrario, es false.
Valor devuelto
Tipo: Microsoft.Data.Edm.IEdmRowTypeReference
Referencia a esta definición de tipo de fila.
Nota de uso
En Visual Basic y C#, puede llamar a este método como un método de instancia en cualquier objeto del tipo IEdmRowType. Cuando utilice la sintaxis del método de instancia para llamar a este método, sáltese este parámetro primero. Para obtener más información, vea https://msdn.microsoft.com/es-es/library/bb384936(v=vs.103) o https://msdn.microsoft.com/es-es/library/bb383977(v=vs.103).