Table of Contents

Class AzureSynapseAnalyticsSchema.TableMapping

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.pdw_table_mappings (Transact-SQL)

Applies to: √ Azure Synapse Analytics √ Analytics Platform System (PDW)

Ties user tables to internal object names by object_id.


See sys.pdw_table_mappings.

[Table(Schema = "sys", Name = "pdw_table_mappings", IsView = true)]
public class AzureSynapseAnalyticsSchema.TableMapping
Inheritance
AzureSynapseAnalyticsSchema.TableMapping
Extension Methods

Properties

Object

objects (sys.objects)

[Association(ThisKey = "ObjectID", OtherKey = "ObjectID", CanBeNull = false)]
public ObjectSchema.Object Object { get; set; }

Property Value

ObjectSchema.Object

ObjectID

The object ID for the table. See sys.objects (Transact-SQL).

physical_name and object_id form the key for this view.

[Column("object_id")]
[NotNull]
public int ObjectID { get; set; }

Property Value

int

PhysicalName

The physical name for the table.

physical_name and object_id form the key for this view.

[Column("physical_name")]
[NotNull]
public string PhysicalName { get; set; }

Property Value

string