Save dat file in database.

This commit is contained in:
2020-08-22 05:40:50 +01:00
parent 25dd3f4921
commit 3b0feee452
8 changed files with 352 additions and 8 deletions

View File

@@ -24,7 +24,6 @@
*******************************************************************************/
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace RomRepoMgr.Database.Models
{
@@ -32,9 +31,7 @@ namespace RomRepoMgr.Database.Models
{
public TKey Id { get; set; }
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public DateTime CreatedOn { get; set; }
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public DateTime UpdatedOn { get; set; }
}
}