上篇我们说到了EFCore的基础使用,这篇我们将讲解下基于EFCore的扩展.
我们在Mango.Framework.EFCore类库项目中创建一个类名EFExtended的扩展类,并且引入相关的命名空间
using System; using System.Reflection; using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Data.SqlClient; using Microsoft.EntityFrameworkCore; using System.Linq; using System.Linq.Expressions; namespace Mango.Framework.EFCore { public static class EFExtended {} }