在刚开始接触ASP.NET
时候,使用Repository
层已经是一个根深蒂固的习惯了。但随着 .NET Core和Entity Framwork Core
的发展以及多年实践,很多人都觉得Repository
层其实没有必要,因为EF Core
本身自带Repository
和Unit of Work
属性。为什么现在不需要Repository
层,以及去Repository
层后是如何实现呢?
时间往前推到2013年左右,当时使用MVC
和Entity Framwork
已经是主流,起先大概是这样的:
以上,DbContext
和Controller
之间是强耦合,并且不方便单元测试,于是Repository
层出现。
开发者在使用Repository
层的时候发现了一些缺点,其中一个缺点是处理实体间关系时性能不佳。
比如有这样的两个类:
public class Student
{
public Address Address{get;set;}
}
public class Address{}
当在repository
层获取Student
实例时,Entity Framwork默认使用Lazy Loading
机制,就是只要程序代码不去获取Student
的Address
属性就不会主动加载Student.Address
属性。关于Lazy Loading
举例如下:
using(var ctx = new SchoolDBEntities())
{
IList<Student> stus = ctx.Students.ToList<Student>();
Student std = stus[0];
StudentAddress add = std.Address;
}
当获取Student
集合的时候,背后会执行一次SQL语句,当获取Student
的Address
属性的时候,背后会再次执行SQL语句。