Table of Contents

Class ServiceBrokerSchema.ServiceContract

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

sys.service_contracts (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

This catalog view contains a row for each contract in the database.


See sys.service_contracts.

[Table(Schema = "sys", Name = "service_contracts", IsView = true)]
public class ServiceBrokerSchema.ServiceContract
Inheritance
ServiceBrokerSchema.ServiceContract
Extension Methods

Properties

Name

Name of the contract, unique within the database. Not NULLABLE.

[Column("name")]
[NotNull]
public string Name { get; set; }

Property Value

string

PrincipalID

Identifier for the database principal that owns this contract. NULLABLE.

[Column("principal_id")]
[Nullable]
public int? PrincipalID { get; set; }

Property Value

int?

ServiceContractID

Identifier of the contract. Not NULLABLE.

[Column("service_contract_id")]
[NotNull]
public int ServiceContractID { get; set; }

Property Value

int