摘要: 一、数据准备 public class Employee { public int ID { get; set; } public string Name { get; set; } public int AddressId { get; set; } public int DepartmentId 阅读全文
posted @ 2022-08-25 18:13 katesharing 阅读(205) 评论(0) 推荐(0)
摘要: 一、 数据准备 public class Employee { public int ID { get; set; } public string Name { get; set; } public int AddressId { get; set; } public static List<Emp 阅读全文
posted @ 2022-08-25 17:33 katesharing 阅读(482) 评论(0) 推荐(0)
摘要: Create Table Employee (ID int identity(1,1) primary key, FullName nvarchar(20) not null, DeptID int , AddressID int ) 阅读全文
posted @ 2022-08-25 15:25 katesharing 阅读(47) 评论(0) 推荐(0)