C# Dapper基本三层架构使用 (Model)
Posted Li Essay
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# Dapper基本三层架构使用 (Model)相关的知识,希望对你有一定的参考价值。
我们将数据存放在数据库中,数据表的结构,我们通常会用一个类来抽象,表的属性就是类的属性,我们通常将表的一行存储在一个类中。
在Java中,通常将其称为实体类Entity,在C#中,通常将其称为Model。
这里使用的是Region表中的数据
在Model类库中增加类Region
代码如下
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Northwind.Model { public class Region { public int RegionID { get; set; } public string RegionDescription { get; set; } } }
以上是关于C# Dapper基本三层架构使用 (Model)的主要内容,如果未能解决你的问题,请参考以下文章