Skip to content

Commit 9aabb8c

Browse files
committed
Added missing file.
1 parent a5eb90f commit 9aabb8c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using System.ComponentModel.DataAnnotations;
2+
using System.ComponentModel.DataAnnotations.Schema;
3+
4+
namespace SQLite.CodeFirst.Console.Entity
5+
{
6+
public class Stadion
7+
{
8+
[Key]
9+
[Column(Order = 1)]
10+
public string Name { get; set; }
11+
12+
[Key]
13+
[Column(Order = 2)]
14+
public string Street { get; set; }
15+
16+
[Key]
17+
[Column(Order = 3)]
18+
public string City { get; set; }
19+
}
20+
}

0 commit comments

Comments
 (0)