-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathBotDataEntity.cs
62 lines (56 loc) · 1.64 KB
/
BotDataEntity.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Bot.Builder.Community.Storage.EntityFramework
{
/// <summary>
/// BotDataEntity representing one bot data record.
/// </summary>
[Table("BotDataEntity")]
public class BotDataEntity
{
/// <summary>
/// Constructor for BotDataEntity
/// </summary>
/// <remarks>
/// Sets Timestamp to DateTimeOffset.UtfcNow
/// </remarks>
public BotDataEntity()
{
Timestamp = DateTimeOffset.UtcNow;
}
/// <summary>
/// Gets or sets the auto-generated Id/Key.
/// </summary>
/// <value>
/// The database generated Id/Key.
/// </value>
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
/// <summary>
/// Gets or sets the un-sanitized Id/Key.
/// </summary>
/// <value>
/// The un-sanitized Id/Key.
/// </value>
[MaxLength(1024)]
public string RealId { get; set; }
/// <summary>
/// Gets or sets the persisted object's state.
/// </summary>
/// <value>
/// The persisted object's state.
/// </value>
[Column(TypeName = "nvarchar(MAX)")]
public string Document { get; set; }
/// <summary>
/// Gets or sets the current timestamp.
/// </summary>
/// <value>
/// The current timestamp.
/// </value>
[Required]
[Timestamp]
public DateTimeOffset Timestamp { get; set; }
}
}