在.net core開發過程當中,使用最多的就是注入方法。可是在.net core使用PetaPoco時,PetaPoco還不支持進行注入方式進行處理一些問題。html
今天對PetaPoco進行了一些擴展,能夠很方便的將PetaPoco進行注入操做,使用和EF很類似,可是更加簡單git
一、對PetaPoco.Compiled進行的一些擴展PetaPoco.Compiled.Extensions庫github
nuget:https://www.nuget.org/packages/PetaPoco.Compiled.Extensions/ 歡迎使用數據庫
github:https://github.com/mzy666888/PetaPoco.Compiled.Extensions 歡迎starjson
具體擴展內容以下app
1.1 建立PetaPocoDBContextOptions類ide
namespace PetaPoco.Compiled.Extensions { using Microsoft.Extensions.Options; public class PetaPocoDBContextOptions : IOptions<PetaPocoDBContextOptions> { /// <summary>The default configured TOptions instance</summary> PetaPocoDBContextOptions IOptions<PetaPocoDBContextOptions>.Value => this; public string ConnectionString { get; set; } public string ProviderName { get; set; } } }
1.2 建立接口IPetaPocoDBContext函數
接口繼承IDatabaseui
public interface IPetaPocoDBContext:IDatabase { }
1.3 建立類PetaPocoDBContextthis
類繼承IPetaPocoDBContext
namespace PetaPoco.Compiled.Extensions { using Microsoft.Extensions.Options; using PetaPoco; public abstract class PetaPocoDBContext:Database,IPetaPocoDBContext { /// <summary> /// 構造函數 /// </summary> /// <param name="optionsAccessor"></param> protected PetaPocoDBContext(IOptions<PetaPocoDBContextOptions> optionsAccessor) : base(optionsAccessor.Value.ConnectionString, optionsAccessor.Value.ProviderName) { } } }
1.4 添加對IServiceCollection的擴展
namespace PetaPoco.Compiled.Extensions { using Microsoft.Extensions.DependencyInjection; public static class PetaPocoDBContextServiceCollectionExtensions { public static IServiceCollection AddPetaPoco<T>( this IServiceCollection services, Action<PetaPocoDBContextOptions> setupAction) where T : class ,IPetaPocoDBContext { if (null == services) { throw new ArgumentNullException(nameof(services)); } if (null == setupAction) { throw new ArgumentNullException(nameof(setupAction)); } services.AddOptions(); services.Configure(setupAction); services.AddScoped<IPetaPocoDBContext, T>(); return services; } } }
這樣對PetaPoco的擴展已經完成。
2.在ASP.NET Core MVC中使用PetaPoco.Compiled.Extensions
首先使用nuget對PetaPoco.Compiled.Extensions的引用
使用命令:Install-Package PetaPoco.Compiled.Extensions -Version 0.0.1
添加一個繼承PetaPocoDBContext的DBContext類
namespace PetaPoco.Compiled.Extensions.MvcTest.DBContexts { using Microsoft.Extensions.Options; public class MvcPetaPocoDBContext:PetaPocoDBContext { /// <summary> /// 構造函數 /// </summary> /// <param name="optionsAccessor"></param> public MvcPetaPocoDBContext(IOptions<PetaPocoDBContextOptions> optionsAccessor) : base(optionsAccessor) { } } }
添加好後,就能夠在Startup中進行注入了,以下圖所示
須要添加MySQL.Data的nuget引用
在appsettings.json文件中,數據庫鏈接字符串配置以下:
"ConnectionStrings": { "MySQL": { "MvcMySQL": "server=127.0.0.1;port=3306;uid=root;pwd=123456;database=WireCloud;", "provider": "MySql.Data.MySqlClient" } }
添加數據庫表:Users(後續將使用EFCore進行CodeFirst進行處理)
添加對Users的操做接口和實現
namespace PetaPoco.Compiled.Extensions.MvcTest.Services { using PetaPoco.Compiled.Extensions.MvcTest.Models; public interface IUserService { IList<User> GetAll(); } public class UserService : IUserService { private PetaPocoDBContext _context; public UserService(PetaPocoDBContext context) { _context = context; } public IList<User> GetAll() { return _context.Fetch<User>(); } } }
在HomeController中添加一個Action
namespace PetaPoco.Compiled.Extensions.MvcTest.Controllers { using PetaPoco.Compiled.Extensions.MvcTest.Services; public class HomeController : Controller { private IUserService _userService; public HomeController(IUserService userService) { _userService = userService; } public IActionResult Index() { return View(); } public IActionResult Privacy() { return View(); } [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] public IActionResult Error() { return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); } public IActionResult Users() { return View(_userService.GetAll()); } } }
View實現
@model System.Collections.Generic.IList<PetaPoco.Compiled.Extensions.MvcTest.Models.User> <div> @foreach(var user in Model) { <div>@user.Uid</div> <div>@user.UserName</div> } </div>
運行並訪問:http://localhost:52769/Home/Users
下一步實現EF Core 的CodeFirst功能,而後就能快速使用PetaPoco+EF Core相結合進行快速碼代碼了
EF Core的代碼也能夠本身去實現