Identifier.InternalId Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the internal integer identifier that uniquely identifies an object within a Master Data Services instance.

Namespace:   Microsoft.MasterDataServices.Services.DataContracts
Assembly:  Microsoft.MasterDataServices.Services.Contracts (in Microsoft.MasterDataServices.Services.Contracts.dll)

Syntax

[DataMemberAttribute(Order = 3, IsRequired = false)]
public int InternalId { get; set; }
public:
[DataMemberAttribute(Order = 3, IsRequired = false)]
property int InternalId {
    int get();
    void set(int value);
}
[<DataMemberAttribute(Order = 3, IsRequired = false)>]
member InternalId : int with get, set
<DataMemberAttribute(Order := 3, IsRequired := False)>
Public Property InternalId As Integer

Property Value

Type: System.Int32

The internal integer identifier.

Remarks

This feature will be removed in the next version of Microsoft SQL Server. Do not use this feature in new development work, and modify applications that currently use this feature as soon as possible; use the Id property instead.

See Also

Identifier Class
Microsoft.MasterDataServices.Services.DataContracts Namespace

Return to top