Updates a data entity.

Namespace: SimpleMode.SecureLicenseManager.Data
Assembly: SimpleMode.SecureLicenseManager.Data (in SimpleMode.SecureLicenseManager.Data.dll) Version: 1.5.5120.0 (1.5.5120.0)

Syntax

C#
public void Update<T>(
	T item
)
where T : class
Visual Basic
Public Sub Update(Of T As Class) ( _
	item As T _
)
Visual C++
public:
generic<typename T>
where T : ref class
virtual void Update(
	T item
) sealed

Parameters

item
Type: T
The entity to update.

Type Parameters

T
The entity type.

Implements

IRepository..::..Update<(Of <<'(T>)>>)(T)

See Also