Model.Sync Method

Definition

Overloads

Sync()

Synchronizes a local copy of the model tree to match the latest version stored on the Analysis Services instance, using the default options.

Sync(SyncOptions)

Synchronizes a local copy of the model tree to match the latest version stored on the Analysis Services instance, using the provided options.

Sync()

Synchronizes a local copy of the model tree to match the latest version stored on the Analysis Services instance, using the default options.

public Microsoft.AnalysisServices.Tabular.ModelOperationResult Sync ();
member this.Sync : unit -> Microsoft.AnalysisServices.Tabular.ModelOperationResult
Public Function Sync () As ModelOperationResult

Returns

ModelOperationResult

Provides the results of the synch operation against the local model tree after comparing it to the version stored on the server. Essentially, this delta has a meaning of "what has changed on the Engine since last time I sync'd the model".

Applies to

Sync(SyncOptions)

Synchronizes a local copy of the model tree to match the latest version stored on the Analysis Services instance, using the provided options.

public Microsoft.AnalysisServices.Tabular.ModelOperationResult Sync (Microsoft.AnalysisServices.Tabular.SyncOptions options);
member this.Sync : Microsoft.AnalysisServices.Tabular.SyncOptions -> Microsoft.AnalysisServices.Tabular.ModelOperationResult
Public Function Sync (options As SyncOptions) As ModelOperationResult

Parameters

options
SyncOptions

The synchronization options.

Returns

ModelOperationResult

Provides the results of the synch operation against the local model tree after comparing it to the version stored on the server. Essentially, this delta has a meaning of "what has changed on the Engine since last time I sync'd the model".

Applies to