Creates 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#
void Create<T>(
	T entity
)
where T : class
Visual Basic
Sub Create(Of T As Class) ( _
	entity As T _
)
Visual C++
generic<typename T>
where T : ref class
void Create(
	T entity
)

Parameters

entity
Type: T

[Missing <param name="entity"/> documentation for "M:SimpleMode.SecureLicenseManager.Data.IRepository.Create``1(``0)"]

Type Parameters

T
The entity type.

See Also