Click or drag to resize

BundlePersistenceServiceGet(Guid, NullableGuid, IPrincipal) Method

Get the object with identifier key.

Namespace: SanteDB.Persistence.Data.Services.Persistence.Collections
Assembly: SanteDB.Persistence.Data (in SanteDB.Persistence.Data.dll) Version: 3.0.2081-alpha+be3dca7062b437ed047a057127f85f12119224b9
Syntax
public Bundle Get(
	Guid key,
	Guid? versionKey,
	IPrincipal principal
)

Parameters

key  Guid
The identifier of the object to fetch
versionKey  NullableGuid
The version of the oject to fetch
principal  IPrincipal
The security principal which is executing the retrieve

Return Value

Bundle

[Missing <returns> documentation for "M:SanteDB.Persistence.Data.Services.Persistence.Collections.BundlePersistenceService.Get(System.Guid,System.Nullable{System.Guid},System.Security.Principal.IPrincipal)"]

Implements

IDataPersistenceServiceTDataGet(Guid, NullableGuid, IPrincipal)
Exceptions
ExceptionCondition
NotSupportedExceptionThis method is not supported on Bundle
Remarks
This method will retrieve the record of type TData from the database regardless of its state. If the record is logically deleted, or indicated as inactive (i.e. would not appear in a result set), this method will still retrieve the data from the database.
See Also