Class ServiceBrokerSchema.ConversationGroup
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.conversation_groups (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
This catalog view contains a row for each conversation group.
[Table(Schema = "sys", Name = "conversation_groups", IsView = true)]
public class ServiceBrokerSchema.ConversationGroup
- Inheritance
-
ServiceBrokerSchema.ConversationGroup
- Extension Methods
Properties
ConversationGroupID
Identifier for the conversation group. Not NULLABLE.
[Column("conversation_group_id")]
[NotNull]
public Guid ConversationGroupID { get; set; }
Property Value
IsSystem
Indicates whether this is a system instance or not. NULLABLE.
[Column("is_system")]
[Nullable]
public bool? IsSystem { get; set; }
Property Value
- bool?
ServiceID
Identifier of the service for conversations in this group. Not NULLABLE.
[Column("service_id")]
[NotNull]
public int ServiceID { get; set; }