DbPropertyValues.SetValues (Método) (Object)
[Esta página es específica de la versión 6 de Entity Framework. La versión más reciente está disponible como el paquete NuGet de Entity Framework. Para más información sobre Entity Framework, consulte msdn.com/es-ES/data/ef].
Establece los valores de este diccionario mediante la lectura de los valores del objeto determinado. El objeto determinado puede ser de cualquier tipo. Se leerán las propiedades del objeto cuyo nombre coincida con un nombre de propiedad del diccionario y se pueda leer. Se omitirán las demás propiedades. Esto permite, por ejemplo, copiar propiedades de objetos de transferencia de datos (DTO) simples.
Espacio de nombres: System.Data.Entity.Infrastructure
Ensamblado: EntityFramework (en EntityFramework.dll)
Sintaxis
'Declaración
<SuppressMessageAttribute("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", MessageId := "obj", _
Justification := "Naming is intentional.")> _
Public Sub SetValues ( _
obj As Object _
)
'Uso
Dim instance As DbPropertyValues
Dim obj As Object
instance.SetValues(obj)
[SuppressMessageAttribute("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", MessageId = "obj",
Justification = "Naming is intentional.")]
public void SetValues(
Object obj
)
[SuppressMessageAttribute(L"Microsoft.Naming", L"CA1720:IdentifiersShouldNotContainTypeNames", MessageId = L"obj",
Justification = L"Naming is intentional.")]
public:
void SetValues(
Object^ obj
)
[<SuppressMessageAttribute("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", MessageId = "obj",
Justification = "Naming is intentional.")>]
member SetValues :
obj:Object -> unit
public function SetValues(
obj : Object
)
Parámetros
- obj
Tipo: System.Object
Objeto cuyos valores se van a leer.