forked from zzzprojects/System.Linq.Dynamic.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVW_EmployeeDetails.cs
More file actions
48 lines (32 loc) · 1.18 KB
/
VW_EmployeeDetails.cs
File metadata and controls
48 lines (32 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities
{
public partial class ViewEmployeeDetails
{
[Key]
[Column(Order = 0)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public long Id { get; set; }
[Key]
[Column(Order = 1)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int EmployeeNumber { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
[Key]
[Column(Order = 2)]
public DateTime HireDate { get; set; }
public long? CompanyId { get; set; }
public long? CountryId { get; set; }
public long? FunctionId { get; set; }
public long? SubFunctionId { get; set; }
public int? Assigned { get; set; }
public bool? IsManager { get; set; }
public string FullName { get; set; }
public bool? IsAssigned { get; set; }
public string CountryCode { get; set; }
public string CountryName { get; set; }
}
}