DatabaseExtensions.ToTmdl Method

Definition

Overloads

ToTmdl(Database)

IMPORTANT: TMDL is still in preview and the API surface might still be modified prior to GA!

Builds a set of TMDL documents based on the metadata of the secified database.

ToTmdl(Database, MetadataSerializationOptions)

IMPORTANT: TMDL is still in preview and the API surface might still be modified prior to GA!

Builds a set of TMDL documents based on the metadata of the secified database.

ToTmdl(Database)

IMPORTANT: TMDL is still in preview and the API surface might still be modified prior to GA!

Builds a set of TMDL documents based on the metadata of the secified database.

public static System.Collections.Generic.IEnumerable<Microsoft.AnalysisServices.Tabular.Serialization.MetadataDocument> ToTmdl (this Microsoft.AnalysisServices.Database db);
static member ToTmdl : Microsoft.AnalysisServices.Database -> seq<Microsoft.AnalysisServices.Tabular.Serialization.MetadataDocument>
<Extension()>
Public Function ToTmdl (db As Database) As IEnumerable(Of MetadataDocument)

Parameters

db
Database

The source database.

Returns

A set of MetadataDocument, representing the metadata of the database.

Exceptions

The specified database is a null reference (Nothing in Visual Basic).

Applies to

ToTmdl(Database, MetadataSerializationOptions)

IMPORTANT: TMDL is still in preview and the API surface might still be modified prior to GA!

Builds a set of TMDL documents based on the metadata of the secified database.

public static System.Collections.Generic.IEnumerable<Microsoft.AnalysisServices.Tabular.Serialization.MetadataDocument> ToTmdl (this Microsoft.AnalysisServices.Database db, Microsoft.AnalysisServices.Tabular.Serialization.MetadataSerializationOptions options);
static member ToTmdl : Microsoft.AnalysisServices.Database * Microsoft.AnalysisServices.Tabular.Serialization.MetadataSerializationOptions -> seq<Microsoft.AnalysisServices.Tabular.Serialization.MetadataDocument>
<Extension()>
Public Function ToTmdl (db As Database, options As MetadataSerializationOptions) As IEnumerable(Of MetadataDocument)

Parameters

db
Database

The source database.

options
MetadataSerializationOptions

The options for the serialization operation.

Returns

A set of MetadataDocument, representing the metadata of the database.

Exceptions

  • The specified database is a null reference (Nothing in Visual Basic).
  • The specified options instance is a null reference (Nothing in Visual Basic).

Applies to