@@ -21,114 +21,114 @@ public Audit()
2121
2222 #region Generated Properties
2323 /// <summary>
24- /// Gets or sets the property value representing column 'Id' .
24+ /// Gets or sets the property value representing column <c>Id</c> .
2525 /// </summary>
2626 /// <value>
27- /// The property value representing column 'Id' .
27+ /// The property value representing column <c>Id</c> .
2828 /// </value>
29- [ System . ComponentModel . DataAnnotations . Key ( ) ]
30- [ System . ComponentModel . DataAnnotations . Schema . Column ( "Id" , TypeName = "UNIQUEIDENTIFIER " ) ]
29+ [ Key ]
30+ [ Column ( "Id" , TypeName = "uniqueidentifier " ) ]
3131 public Guid Id { get ; set ; }
3232
3333 /// <summary>
34- /// Gets or sets the property value representing column ' Date' .
34+ /// Gets or sets the property value representing column <c> Date</c> .
3535 /// </summary>
3636 /// <value>
37- /// The property value representing column ' Date' .
37+ /// The property value representing column <c> Date</c> .
3838 /// </value>
39- [ System . ComponentModel . DataAnnotations . Schema . Column ( "Date" , TypeName = "DATETIME " ) ]
39+ [ Column ( "Date" , TypeName = "datetime " ) ]
4040 public DateTime Date { get ; set ; }
4141
4242 /// <summary>
43- /// Gets or sets the property value representing column ' UserId' .
43+ /// Gets or sets the property value representing column <c> UserId</c> .
4444 /// </summary>
4545 /// <value>
46- /// The property value representing column ' UserId' .
46+ /// The property value representing column <c> UserId</c> .
4747 /// </value>
48- [ System . ComponentModel . DataAnnotations . Schema . Column ( "UserId" , TypeName = "UNIQUEIDENTIFIER " ) ]
48+ [ Column ( "UserId" , TypeName = "uniqueidentifier " ) ]
4949 public Guid ? UserId { get ; set ; }
5050
5151 /// <summary>
52- /// Gets or sets the property value representing column ' TaskId' .
52+ /// Gets or sets the property value representing column <c> TaskId</c> .
5353 /// </summary>
5454 /// <value>
55- /// The property value representing column ' TaskId' .
55+ /// The property value representing column <c> TaskId</c> .
5656 /// </value>
57- [ System . ComponentModel . DataAnnotations . Schema . Column ( "TaskId" , TypeName = "UNIQUEIDENTIFIER " ) ]
57+ [ Column ( "TaskId" , TypeName = "uniqueidentifier " ) ]
5858 public Guid ? TaskId { get ; set ; }
5959
6060 /// <summary>
61- /// Gets or sets the property value representing column ' Content' .
61+ /// Gets or sets the property value representing column <c> Content</c> .
6262 /// </summary>
6363 /// <value>
64- /// The property value representing column ' Content' .
64+ /// The property value representing column <c> Content</c> .
6565 /// </value>
66- [ System . ComponentModel . DataAnnotations . Schema . Column ( "Content" , TypeName = "NVARCHAR(MAX )" ) ]
66+ [ Column ( "Content" , TypeName = "nvarchar(max )" ) ]
6767 public string Content { get ; set ; } = null ! ;
6868
6969 /// <summary>
70- /// Gets or sets the property value representing column ' Username' .
70+ /// Gets or sets the property value representing column <c> Username</c> .
7171 /// </summary>
7272 /// <value>
73- /// The property value representing column ' Username' .
73+ /// The property value representing column <c> Username</c> .
7474 /// </value>
75- [ System . ComponentModel . DataAnnotations . Schema . Column ( "Username" , TypeName = "NVARCHAR (50)" ) ]
75+ [ Column ( "Username" , TypeName = "nvarchar (50)" ) ]
7676 public string Username { get ; set ; } = null ! ;
7777
7878 /// <summary>
79- /// Gets or sets the property value representing column ' Created' .
79+ /// Gets or sets the property value representing column <c> Created</c> .
8080 /// </summary>
8181 /// <value>
82- /// The property value representing column ' Created' .
82+ /// The property value representing column <c> Created</c> .
8383 /// </value>
84- [ System . ComponentModel . DataAnnotations . Schema . Column ( "Created" , TypeName = "DATETIMEOFFSET " ) ]
84+ [ Column ( "Created" , TypeName = "datetimeoffset " ) ]
8585 public DateTimeOffset Created { get ; set ; }
8686
8787 /// <summary>
88- /// Gets or sets the property value representing column ' CreatedBy' .
88+ /// Gets or sets the property value representing column <c> CreatedBy</c> .
8989 /// </summary>
9090 /// <value>
91- /// The property value representing column ' CreatedBy' .
91+ /// The property value representing column <c> CreatedBy</c> .
9292 /// </value>
93- [ System . ComponentModel . DataAnnotations . Schema . Column ( "CreatedBy" , TypeName = "NVARCHAR (100)" ) ]
93+ [ Column ( "CreatedBy" , TypeName = "nvarchar (100)" ) ]
9494 public string ? CreatedBy { get ; set ; }
9595
9696 /// <summary>
97- /// Gets or sets the property value representing column ' Updated' .
97+ /// Gets or sets the property value representing column <c> Updated</c> .
9898 /// </summary>
9999 /// <value>
100- /// The property value representing column ' Updated' .
100+ /// The property value representing column <c> Updated</c> .
101101 /// </value>
102- [ System . ComponentModel . DataAnnotations . Schema . Column ( "Updated" , TypeName = "DATETIMEOFFSET " ) ]
102+ [ Column ( "Updated" , TypeName = "datetimeoffset " ) ]
103103 public DateTimeOffset Updated { get ; set ; }
104104
105105 /// <summary>
106- /// Gets or sets the property value representing column ' UpdatedBy' .
106+ /// Gets or sets the property value representing column <c> UpdatedBy</c> .
107107 /// </summary>
108108 /// <value>
109- /// The property value representing column ' UpdatedBy' .
109+ /// The property value representing column <c> UpdatedBy</c> .
110110 /// </value>
111- [ System . ComponentModel . DataAnnotations . Schema . Column ( "UpdatedBy" , TypeName = "NVARCHAR (100)" ) ]
111+ [ Column ( "UpdatedBy" , TypeName = "nvarchar (100)" ) ]
112112 public string ? UpdatedBy { get ; set ; }
113113
114114 /// <summary>
115- /// Gets or sets the property value representing column ' RowVersion' .
115+ /// Gets or sets the property value representing column <c> RowVersion</c> .
116116 /// </summary>
117117 /// <value>
118- /// The property value representing column ' RowVersion' .
118+ /// The property value representing column <c> RowVersion</c> .
119119 /// </value>
120- [ System . ComponentModel . DataAnnotations . ConcurrencyCheck ( ) ]
121- [ System . ComponentModel . DataAnnotations . Schema . Column ( "RowVersion" , TypeName = "TIMESTAMP " ) ]
122- [ System . ComponentModel . DataAnnotations . Schema . DatabaseGenerated ( System . ComponentModel . DataAnnotations . Schema . DatabaseGeneratedOption . Computed ) ]
120+ [ ConcurrencyCheck ]
121+ [ Column ( "RowVersion" , TypeName = "rowversion " ) ]
122+ [ DatabaseGenerated ( DatabaseGeneratedOption . Computed ) ]
123123 public byte [ ] RowVersion { get ; set ; } = null ! ;
124124
125125 /// <summary>
126- /// Gets or sets the property value representing column ' Attributes' .
126+ /// Gets or sets the property value representing column <c> Attributes</c> .
127127 /// </summary>
128128 /// <value>
129- /// The property value representing column ' Attributes' .
129+ /// The property value representing column <c> Attributes</c> .
130130 /// </value>
131- [ System . ComponentModel . DataAnnotations . Schema . Column ( "Attributes" , TypeName = "StringList" ) ]
131+ [ Column ( "Attributes" , TypeName = "StringList" ) ]
132132 public string ? Attributes { get ; set ; }
133133
134134 #endregion
0 commit comments