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 8227c86 commit 7ca4a85Copy full SHA for 7ca4a85
Shared/Models/NorthwindModel.cs
@@ -0,0 +1,26 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.ComponentModel.DataAnnotations;
4
+using System.Text;
5
+
6
+namespace DropDownListWithEF.Shared.Models
7
+{
8
+ public class Region
9
+ {
10
+ [Key]
11
+ public int? RegionID { get; set; }
12
13
+ public string RegionDescription { get; set; }
14
+ }
15
16
+ public class Territories
17
18
19
+ public string TerritoryID { get; set; }
20
21
+ public string TerritoryDescription { get; set; }
22
23
24
25
26
+}
0 commit comments