Table of Contents

Class ServiceBrokerSchema.ConversationPriority

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

sys.conversation_priorities (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Contains a row for each conversation priority created in the current database, as shown in the following table:


See sys.conversation_priorities.

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

Properties

LocalServiceID

The identifier of the service that is specified as the local service for the conversation priority. This column can be joined on the service_id column in sys.services. NULLABLE.

[Column("local_service_id")]
[Nullable]
public int? LocalServiceID { get; set; }

Property Value

int?

Name

Name of the conversation priority. Not NULLABLE.

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

Property Value

string

Priority

The priority level that is specified in this conversation priority. Not NULLABLE.

[Column("priority")]
[NotNull]
public byte Priority { get; set; }

Property Value

byte

PriorityID

A number that uniquely identifies the conversation priority. Not NULLABLE.

[Column("priority_id")]
[NotNull]
public int PriorityID { get; set; }

Property Value

int

RemoteServiceName

The name of the service that is specified as the remote service for the conversation priority. NULLABLE.

[Column("remote_service_name")]
[Nullable]
public string? RemoteServiceName { get; set; }

Property Value

string

ServiceContractID

The identifier of the contract that is specified for the conversation priority. This can be joined on the service_contract_id column in sys.service_contracts. NULLABLE.

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

Property Value

int?