在.net core 中PetaPoco结合EntityFrameworkCore使用codefirst方法进行开发

在.net core开发过程中,使用最多的就是注入方法。但是在.net core使用PetaPoco时,PetaPoco还不支持进行注入方式进行处理一些问题。

今天对PetaPoco进行了一些扩展,可以很方便的将PetaPoco进行注入操作,使用和EF很相似,但是更加简单

1、对PetaPoco.Compiled进行的一些扩展PetaPoco.Compiled.Extensions库

nuget:https://www.nuget.org/packages/PetaPoco.Compiled.Extensions/  欢迎使用

github:https://github.com/mzy666888/PetaPoco.Compiled.Extensions  欢迎star

具体扩展内容如下

  1.1 创建PetaPocoDBContextOptions类

640?wx_fmt=gif

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; }
}
}

640?wx_fmt=gif

1.2 创建接口IPetaPocoDBContext

接口继承IDatabase

public interface IPetaPocoDBContext:IDatabase
{
}

1.3 创建类PetaPocoDBContext

类继承IPetaPocoDBContext

640?wx_fmt=gif

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)
{

}
}
}

640?wx_fmt=gif

1.4 添加对IServiceCollection的扩展

640?wx_fmt=gif

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;
}
}

}

640?wx_fmt=gif

这样对PetaPoco的扩展已经完成。

2.在ASP.NET Core MVC中使用PetaPoco.Compiled.Extensions

首先使用nuget对PetaPoco.Compiled.Extensions的引用

使用命令:Install-Package PetaPoco.Compiled.Extensions -Version 0.0.1

添加一个继承PetaPocoDBContext的DBContext类

640?wx_fmt=gif

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)
{
}
}
}

640?wx_fmt=gif

添加好后,就可以在Startup中进行注入了,如下图所示

需要添加MySQL.Data的nuget引用

640?wx_fmt=png

在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的操作接口和实现

640?wx_fmt=gif

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>();
}
}
}

640?wx_fmt=gif

在HomeController中添加一个Action

640?wx_fmt=gif

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();
}

public IActionResult Users()
{
return View(_userService.GetAll());
}
}
}

640?wx_fmt=gif

View实现

640?wx_fmt=gif

@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>

640?wx_fmt=gif

运行并访问:http://localhost:52769/Home/Users

640?wx_fmt=png

 

 

下一步实现EF Core 的CodeFirst功能,然后就能快速使用PetaPoco+EF Core相结合进行快速码代码了

EF  Core的代码也可以自己去实现 


本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/316238.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

F-Pairwise Modulo

d数组是来算&#xff08;x整除y&#xff09;*y中y比x小的数 s数组是算&#xff08;x整除y&#xff09;*y中y比x大的数 &#xff08;x整除y&#xff09;*y 看x对于前面大于他的数是枚举&#xff0c;对于前面小于他的数是d树状数组储存。 d中 x整除y表示x中有多少个y 所以 …

2020 ICPC NAC

2020 ICPC NAC 题号题目知识点难度AAnother Coin Weighing PuzzleBMini BattleshipCBomasDAll KillEGrid GuardianFHopscotch 50GICPC CampHLetter WheelsIEditing ExplosionJLunchtime Name RecallKRooted SubtreesLTomb Raider

【微服务学习】Polly:熔断降级组件

何为熔断降级“熔断器如同电力过载保护器。它可以实现快速失败&#xff0c;如果它在一段时间内侦测到许多类似的错误&#xff0c;会强迫其以后的多个调用快速失败&#xff0c;不再访问远程服务器&#xff0c;从而防止应用程序不断地尝试执行可能会失败的操作&#xff0c;使得应…

A - Junk-Mail Filter HDU - 2473

只是这样合并&#xff0c;分割点的时候就不能分了。 这样合并再加上虚拟节点&#xff0c;那么每个你要求的节点就的下面就不连其他节点了&#xff0c;这样就可以进行删除操作了 #include<iostream> #include<algorithm> #include<cstdio> #include<cstr…

为什么不要使用 async void

问题在使用 Abp 框架的后台作业时&#xff0c;当后台作业抛出异常&#xff0c;会导致整个程序崩溃。在 Abp 框架的底层执行后台作业的时候&#xff0c;有 try/catch 语句块用来捕获后台任务执行时的异常&#xff0c;但是在这里没有生效。原始代码如下&#xff1a;public class …

2018-2019 ICPC Northwestern European Regional Programming Contest (NWERC 2018)

2018-2019 ICPC Northwestern European Regional Programming Contest (NWERC 2018) 题号题目知识点难度AAccess PointsBBrexit NegotiationsCCircuit Board DesignDDate PickupEEquality ControlFFastest SpeedrunGGame DesignHHard DriveIInflationJJinxed BettingKKleptogr…

LCA。。。

树链剖分 #include<cstdio> #include<iostream> #include<cstring> using namespace std; const int N5e510;int h[N],e[2*N],ne[2*N],idx0; void add(int u,int v){e[idx]v,ne[idx]h[u],h[u]idx;return;}int siz[N],de[N],son[N],top[N],fa[N],id[N],num; …

张队长主讲这堂 .NET Core技术培训公开课,太原你约不约

这堂.NET Core技术培训课&#xff0c;你不能错过各位开发者朋友们想必也能体会到&#xff0c;现在市面上关于.NET Core的培训课程少之又少&#xff0c;其中有质量有内容的课程更是凤毛麟角&#xff0c;良师难遇&#xff0c;一课难求。但是现在&#xff0c;机会来了。中微云孵邀…

L :WeChat Walk

详见代码 #include<cstdio> #include<iostream> #include<cstring> #include<vector> #include<map> #include<algorithm> #include<cmath> using namespace std; typedef long long ll; const int N2e510;int h[N],e[N<<1],…

微软推出新语言Bosque,超越结构化程序设计

微软近期推出了一款全新的编程语言 Bosque&#xff0c;该语言参考了 TypeScript 的语法与类型&#xff0c;还有 ML 和 Node/JavaScript 的语义。作者微软计算机科学家 Mark Marron 致力于消除编程过程中出现的各种复杂情况&#xff0c;创造出了他认为超越主流结构化程序设计的 …

Acwing202. 最幸运的数字

Acwing202. 最幸运的数字 题意&#xff1a; 现在给定一个正整数 L&#xff0c;请问至少多少个 8 连在一起组成的正整数&#xff08;即最小幸运数字&#xff09;是 L 的倍数。 题解&#xff1a; x个8连在一起组成的正整数可写作8(10x−1)/98(10^x-1)/98(10x−1)/9。现在要求…

Black and white

在1-n&#xff0c;1-m里选nm-1个边&#xff0c;不形成环的话那就可以补全图形。。。还是不懂 #include<iostream> #include<cstring> using namespace std; const int N6000; typedef long long ll; int l[N],r[N],A[N*N]; int ma[N][N],dis[NN]; int n,m,a,b,c,…

Sumdiv POJ - 1845

Sumdiv POJ - 1845 题意&#xff1a; 求ABA^BAB的所有约数之和mod 9901(1<A,B<5e7) 题解&#xff1a; 我们先将A分解质因子&#xff0c;表示为&#xff1a;p1c1∗p2c2∗......∗pncnp_{1}^{c_{1}}*p_{2}^{c_{2}}*......*p_{n}^{c_{n}}p1c1​​∗p2c2​​∗......∗pn…

vue 实验报告8 基于Nuxt.js开发一个Vue程序,实现登录和注册切换

一、步骤&#xff1a; 保证node.js版本在14以上 1. 全局安装create-nuxt-app: npm install -g create-nuxt-app2.9.x 2. 创建项目: create-nuxt-app my-nuxt-demo 选项这么选&#xff1a; 然后输入&#xff1a; cd my-nuxt-demo 3. 创建登录和注册页面: 在/pages目录下创建logi…

解决vs2019中暂时无法为.net core WinForms使用 Designer 的临时方法

以下方法来自于微软github开源项目WinForms:dotnet/winforms - Using the Classic WinForms Designer in WinForms Core, 请放心使用 .目前.net core下的 Windows Forms的可视化设计器(Designer)尚不可用&#xff0c;后续的Visual Studio 2019 Update才会支持该部分的功能。不过…

P2480 [SDOI2010]古代猪文(数论好题)

P2480 [SDOI2010]古代猪文 题意&#xff1a; 给你n和g&#xff0c;求g∑d∣nCndmodpg^{\sum_{d|n}C_{n}^{d}}\bmod pg∑d∣n​Cnd​modp p999911659 题解&#xff1a; 这个一个综合性很强的数论题 涉及到欧拉定理&#xff0c;Lucas定理&#xff0c;中国剩余定理&#xff0c…

ASP.NET Core开发者成长路线图

来源: MoienTajik/AspNetCore-Developer-Roadmap.2019年ASP.NET Core开发者指南:你可以在下面找到一张图&#xff0c;该图展示了你可以选取的路径及你想学习的库&#xff0c;从而成为一名 ASP.NET Core 开发者。“作为 ASP.NET Core 开发者&#xff0c;我接下来应该学习什么&am…

P2183 [国家集训队]礼物(扩展卢卡斯)

P2183 [国家集训队]礼物 题意&#xff1a; 有n个礼物&#xff0c;分给m个人&#xff0c;分给第i个人的礼物数量是wi&#xff0c;问送礼物的方案数。 题解&#xff1a; 扩展卢卡斯模板题 很容易看出和组合数有关的题目&#xff0c;对于总方案&#xff0c;完美可以将其分解为…

Eyjafjalla

区间查询有关比大小的数目&#xff0c; 主席树感觉学线段树的时候不用x<<1,x<<1|1去建一次树那样就容易理解多了&#xff1b; #include<cstdio> #include<iostream> #include<cstring> #include<vector> #include<queue> #include…

P4345 [SHOI2015]超能粒子炮·改

P4345 [SHOI2015]超能粒子炮改 题意&#xff1a; 求解式子∑i0kCni%p\sum_{i0}^{k}C_{n}^{i} \% p∑i0k​Cni​%p n,k<1e18 题解&#xff1a; 设f(n,k)∑i0kCnif(n,k)\sum_{i0}^{k}C_{n}^{i}f(n,k)∑i0k​Cni​ 开始化简&#xff1a; 由卢卡斯定理得&#xff1a; f(n,k)…