Gets an instance of the entity type T with that has an integer id specified by the id parameter
Namespace: SimpleMode.SecureLicenseManager.DataAssembly: SimpleMode.SecureLicenseManager.Data (in SimpleMode.SecureLicenseManager.Data.dll) Version: 1.5.5120.0 (1.5.5120.0)
Syntax
C# |
---|
public T Get<T>(
int id
)
where T : class
|
Visual Basic |
---|
Public Function Get(Of T As Class) ( _
id As Integer _
) As T |
Visual C++ |
---|
public:
generic<typename T>
where T : ref class
virtual T Get(
int id
) sealed |
Type Parameters
Return Value
An object instance of type T.
See Also