Adding EF initialization

This commit is contained in:
2016-01-29 11:25:44 -05:00
parent 37a7a24436
commit 68a77366e9
25 changed files with 2534 additions and 29 deletions
+5 -3
View File
@@ -4,12 +4,14 @@ namespace LeafWeb.Core.Models
{
public class LeafInputFile
{
[Key]
public int LeafInputFileId { get; set; }
public int Id { get; set; }
public virtual LeafInput LeafInput { get; set; }
public virtual LeafInputInfo LeafInputInfo { get; set; }
/// <summary>
/// Parsed values from the LeafInput used in LeafWeb for filtering/searching
/// </summary>
// public virtual LeafInputInfo LeafInputInfo { get; set; }
public string Filename { get; set; }