Class ServiceBrokerSchema.ServiceContract
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.service_contracts (Transact-SQL)
Applies to: √ SQL Server
This catalog view contains a row for each contract in the database.
[Table(Schema = "sys", Name = "service_contracts", IsView = true)]
public class ServiceBrokerSchema.ServiceContract
- Inheritance
-
ServiceBrokerSchema.ServiceContract
- Inherited Members
- Extension Methods
Properties
Name
name NOT NULL sysname
Name of the contract, unique within the database. Not NULLABLE.[Column("name")]
[NotNull]
public string Name { get; set; }
Property Value
PrincipalID
principal_id NULL int
Identifier for the database principal that owns this contract. NULLABLE.[Column("principal_id")]
[Nullable]
public int? PrincipalID { get; set; }
Property Value
- int?
ServiceContractID
service_contract_id NOT NULL int
Identifier of the contract. Not NULLABLE.[Column("service_contract_id")]
[NotNull]
public int ServiceContractID { get; set; }