Class ServiceBrokerSchema.ServiceContractUsage
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.service_contract_usages (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
This catalog view contains a row per (service, contract) pair.
[Table(Schema = "sys", Name = "service_contract_usages", IsView = true)]
public class ServiceBrokerSchema.ServiceContractUsage
- Inheritance
-
ServiceBrokerSchema.ServiceContractUsage
- Extension Methods
Properties
ServiceContractID
Identifier of the contract used by the service. Not NULLABLE.
[Column("service_contract_id")]
[NotNull]
public int ServiceContractID { get; set; }
Property Value
ServiceID
Identifier of the service using the contract. Not NULLABLE.
[Column("service_id")]
[NotNull]
public int ServiceID { get; set; }