Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Diese API unterstützt die SQL Server 2012-Infrastruktur und ist nicht zur direkten Verwendung im Code bestimmt.
Uses the bulk loading of members and relationships into entity based staging tables.
Important: The EntityStagingLoad Method is not supported. When the entity to be loaded does not have a hierarchy or a relationship staging table, the EntityStagingLoad method returns an error (error code 208). The error does not occur when the entity has an explicit hierarchy and the relationship staging table. The alternative to using the EntityStagingLoad method is to load the entity data directly into staging tables
Namespace: Microsoft.MasterDataServices.Services
Assembly: Microsoft.MasterDataServices.Services (in Microsoft.MasterDataServices.Services.dll)
Syntax
'Declaration
Public Function EntityStagingLoad ( _
request As EntityStagingLoadRequest _
) As EntityStagingLoadResponse
'Usage
Dim instance As Service
Dim request As EntityStagingLoadRequest
Dim returnValue As EntityStagingLoadResponse
returnValue = instance.EntityStagingLoad(request)
public EntityStagingLoadResponse EntityStagingLoad(
EntityStagingLoadRequest request
)
public:
virtual EntityStagingLoadResponse^ EntityStagingLoad(
EntityStagingLoadRequest^ request
) sealed
abstract EntityStagingLoad :
request:EntityStagingLoadRequest -> EntityStagingLoadResponse
override EntityStagingLoad :
request:EntityStagingLoadRequest -> EntityStagingLoadResponse
public final function EntityStagingLoad(
request : EntityStagingLoadRequest
) : EntityStagingLoadResponse
Parameter
- request
Typ: Microsoft.MasterDataServices.Services.MessageContracts.EntityStagingLoadRequest
The load request.
Rückgabewert
Typ: Microsoft.MasterDataServices.Services.MessageContracts.EntityStagingLoadResponse
The EntityStagingLoadResponse for the operation.
Implementiert
IService.EntityStagingLoad(EntityStagingLoadRequest)