 | IUpstreamIntegrationServiceGetTModel(Guid, NullableGuid, UpstreamIntegrationQueryControlOptions) Method |
Gets a specified model.
Namespace: SanteDB.Core.ServicesAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
SyntaxTModel Get<TModel>(
Guid key,
Guid? versionKey,
UpstreamIntegrationQueryControlOptions options = null
)
where TModel : IdentifiedData
Function Get(Of TModel As IdentifiedData) (
key As Guid,
versionKey As Guid?,
Optional options As UpstreamIntegrationQueryControlOptions = Nothing
) As TModel
generic<typename TModel>
where TModel : IdentifiedData
TModel Get(
Guid key,
Nullable<Guid> versionKey,
UpstreamIntegrationQueryControlOptions^ options = nullptr
)
abstract Get :
key : Guid *
versionKey : Nullable<Guid> *
?options : UpstreamIntegrationQueryControlOptions
(* Defaults:
let _options = defaultArg options null
*)
-> 'TModel when 'TModel : IdentifiedDataParameters
- key Guid
- The key of the model.
- versionKey NullableGuid
- The version key of the model.
- options UpstreamIntegrationQueryControlOptions (Optional)
- The integrations query options.
Type Parameters
- TModel
- The type of model data to retrieve.
Return Value
TModelReturns a model.
See Also