 | IDataManagedLinkProviderTResolveManagedRecord(T) Method |
When a data management pattern (like MDM) masks or performs specialized linking or synthesization in the database
this method will allow callers to have the data provider synthesize that data.
Namespace: SanteDB.Core.DataAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
SyntaxT ResolveManagedRecord(
T forSource
)
Function ResolveManagedRecord (
forSource As T
) As T
T ResolveManagedRecord(
T forSource
)
abstract ResolveManagedRecord :
forSource : 'T -> 'T Parameters
- forSource T
- The record returned from the persistence layer
Return Value
TThe resolved target object
Remarks
Sometimes when relationships point to a source or target via an
ITargetedAssociation
the source or target will point to a container or linking record. Implementations of this method should
resolve the correct managed record for
forSource or return
forSource
if the object is unmanaged.
See Also