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 a5eb90f commit 9aabb8cCopy full SHA for 9aabb8c
1 file changed
SQLite.CodeFirst.Console/Entity/Stadion.cs
@@ -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
13
+ [Column(Order = 2)]
14
+ public string Street { get; set; }
15
16
17
+ [Column(Order = 3)]
18
+ public string City { get; set; }
19
+ }
20
+}
0 commit comments