abpVnext
人生三醒七分醉
这个作者很懒,什么都没留下…
展开
-
Asp.Net_Linq To Sql 语法 子查询 & In & Join
子查询描述:查询订单数超过5的顾客信息查询句法:var 子查询 = from c in ctx.Customerswhere (from o in ctx.Orders group o by o.CustomerID into o where o.Count() > 5 select o.Key).Contains(c.CustomerID)select c;in 操作描述:查询指定城市中的客户查询句法:var in 操作 = from c in ctx.Cus转载 2022-04-22 10:01:07 · 463 阅读 · 0 评论 -
Abp Vnext EF Core 创建种子数据
种子数据,用于数据迁移,权限管理添加,测试管理using Acme.FirstAbp.Book;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using Volo.Abp.Data;using Volo.Abp.DependencyInjection;using Volo.Abp.Domain.Repositor原创 2022-03-10 11:38:08 · 429 阅读 · 0 评论 -
AbpVnext 定时任务Hangfire
HangFire调度任务创建应用原创 2022-02-14 17:59:59 · 1391 阅读 · 0 评论