1.关于Dapper.Contrib
Dapper.Contrib是Dapper的一个拓展类库,Dapper是一个轻量级ORM框架,这个不了解的请自行收集资料,本文主要讲讲,数据库生成实体,并通过实体进行CURD
2.首先,我们了解下Dapper.Contrib需要实体的格式:
using Dapper.Contrib.Extensions; [Table("StudentSet")] public partial class StudentSet { [Key] public int Id { get; set; } public string StudentName { get; set; } public string LoginName { get; set; } public string Password { get; set; } public int Age { get; set; } public string Sex { get; set; } public string ClassID { get; set; } public string RuleID { get; set; } public string Status { get; set; } public string UpdateTime { get; set; } public string CreateTime { get; set; } }