We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ede51fa commit 88dc03aCopy full SHA for 88dc03a
Entity/Problem.cs
@@ -12,10 +12,12 @@ public class Problem
12
public int ProblemId { get; set; }
13
[MaxLength(50)]
14
[Required(ErrorMessage = "Title is required.")]
15
+ public string Number { get; set; }
16
public string Title { get; set; }
17
public string LtUrl { get; set; }
18
public string CsdnAddress { get; set; }
19
public string Content { get; set; }
- public virtual IList<Tag> Tags { get; set; }
20
+ public string TagsCombine { get; set; }//it's separated by ';'
21
+ public virtual IList<Tag> Tags { get; set; } //it's a navigation property
22
}
23
0 commit comments