Class SQLiteMessageEntity
The SQLite message item entity.
Implements
Inherited Members
Namespace: DNVGL.One.Compute.StorageLibrary.SQLite.Entities
Assembly: DNVGL.One.Compute.StorageLibrary.SQLite.dll
Syntax
[Table("messages")]
public class SQLiteMessageEntity : ISQLiteEntity
Properties
View SourceAlterTableMigrations
Gets the SQL statement used to migrate the table.
Declaration
public static string AlterTableMigrations { get; }
Property Value
Type | Description |
---|---|
string | The SQL statement. |
Remarks
Note: Reflection us being used to get an instance of this property, so the implementation needs to be "public".
CreateTableSql
Gets the SQL statement used to create the table.
Declaration
public static string CreateTableSql { get; }
Property Value
Type | Description |
---|---|
string | The SQL statement. |
Remarks
Note: Reflection us being used to get an instance of this property, so the implementation needs to be "public".
Id
Gets or sets the identifier.
Declaration
[Key]
public int Id { get; set; }
Property Value
Type | Description |
---|---|
int |
Index
Gets or sets the Index.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
int |
Message
Gets or sets the message.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
MessageQueueName
Gets or sets the MessageQueueName.
Declaration
public string MessageQueueName { get; set; }
Property Value
Type | Description |
---|---|
string |
TimeStamp
Gets or sets the TimeStamp.
Declaration
public DateTime TimeStamp { get; set; }
Property Value
Type | Description |
---|---|
DateTime |