Knight Data Access Layer
Update<T>(T) Method




KellermanSoftware.NetDataAccessLayer Namespace > ObjectCrud Class : Update<T>(T) Method
Generic class type
An object instance
Update a record in the database
Syntax
Public Function Update(Of T As {Class, New})( _
   ByVal entity As T _
) As T
Dim instance As ObjectCrud
Dim entity As T
Dim value As T
 
value = instance.Update(Of T)(entity)
public T Update<T>( 
   T entity
)
where T: class, new()
public: T* Update<T>( 
   T* entity
) 
where T: ref class, gcnew()
public:
T^ Updategeneric<typename T>
( 
   T^ entity
) 
where T: ref class, gcnew()

Parameters

entity
An object instance

Type Parameters

T
Generic class type

Return Value

The modified passed in object
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ObjectCrud Class
ObjectCrud Members