Class ServiceBrokerSchema.Service
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.services (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
This catalog view contains a row for each service in the database.
See sys.services.
[Table(Schema = "sys", Name = "services", IsView = true)]
public class ServiceBrokerSchema.Service
- Inheritance
-
ServiceBrokerSchema.Service
- Extension Methods
Properties
Name
Case-sensitive name of service, unique within the database. Not NULLABLE.
[Column("name")]
[NotNull]
public string Name { get; set; }
Property Value
PrincipalID
Identifier for the database principal that owns this service. NULLABLE.
[Column("principal_id")]
[Nullable]
public int? PrincipalID { get; set; }
Property Value
- int?
ServiceID
Identifier of the service. Not NULLABLE.
[Column("service_id")]
[NotNull]
public int ServiceID { get; set; }
Property Value
ServiceQueueID
Object id for the queue that this service uses. Not NULLABLE.
[Column("service_queue_id")]
[NotNull]
public int ServiceQueueID { get; set; }