DDD领域模型查询方法实现(八)

网友投稿 272 2022-09-16

DDD领域模型查询方法实现(八)

在DDD.Domain工程文件夹Repository下创建RequestPage类:

public class RequestPage { public RequestPage(int pagesize, int currentpage, string orderproperty, string order) { this.PageSize = pagesize; this.CurrentPage = currentpage; this.Orderproperty = orderproperty; this.Order = order; } public int PageSize { get; } public int CurrentPage { get; } public string Orderproperty { get; } public string Order { get; } }

在 Repository文件夹IRepository接口中定义:

//返回聚合根分页的方法 List GetByConditionPages(Expression> condition, RequestPage request, out int totalcount); List GetByConditionPages(List condition, RequestPage request, out int totalcount); List GetByConditionPages(Expression> condition, RequestPage request, out int totalcount); List GetByConditionPages(List condition,RequestPage request, out int totalcount);

在DDD.Repository工程ResultPage类中:(结果集)

public class ResultPage : IQueryable { public ResultPage(int totalpages, int totalcounts, int currentpage, List data) { this.TotalPages = totalpages; this.TotalCounts = totalcounts; this.CurrentPage = currentpage; this.Data = data; } public int TotalPages { get; } public int TotalCounts { get; } public int Pagesize { get; } public int CurrentPage { get; } public List Data { get; } public Type ElementType { get { return typeof(T); } } public Expression Expression { get; } public IQueryProvider Provider { get; } public IEnumerator GetEnumerator() { return Data.GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return Data.GetEnumerator(); } }

在EFRepository中实现分页的方法:

public List GetByConditionPages(List condition, RequestPage request, out int totalcount) { return GetByConditionPages(WhereLamdaConverter.Where(condition), request, out totalcount); } public List GetByConditionPages(Expression> condition, RequestPage request, out int totalcount) { var query = orderdbcontext.Set().Where(condition); var skip = (request.CurrentPage - 1) * request.PageSize; var take = request.PageSize; var queryresult = request.Order == "ASC" ? query.OrderBy(p => new { Order = request.Orderproperty }) .Skip(skip).Take(take) : query.OrderByDescending(p => new { Order = request.Orderproperty }) .Skip(skip).Take(take); totalcount = query.Count(); return new ResultPage(totalcount / request.PageSize, totalcount, request.CurrentPage, queryresult.ToList()).ToList(); } public List GetByConditionPages(List condition, RequestPage request, out int totalcount) { return GetByConditionPages(WhereLamdaConverter.Where(condition), request, out totalcount); } public List GetByConditionPages(Expression> condition, RequestPage request, out int totalcount) { var query = orderdbcontext.Set().Where(condition); var skip = (request.CurrentPage - 1) * request.PageSize; var take = request.PageSize; var queryresult = request.Order == "ASC" ? query.OrderBy(p => new { Order = request.Orderproperty }) .Skip(skip).Take(take) : query.OrderByDescending(p => new { Order = request.Orderproperty }) .Skip(skip).Take(take); totalcount = query.Count(); var queryresults = queryresult.ToList(); var queryresultdtos = new List(); if (totalcount > 0) { foreach (var q in queryresults) { var queryresultdto = Mapper.Map(q); queryresultdtos.Add(queryresultdto); } } return new ResultPage(totalcount / request.PageSize, totalcount, request.CurrentPage, queryresultdtos).ToList(); }

在DDD.Infrastructure中新建LamdaFilterConvert(做筛选的转化器):--Conditions

public class Conditions { //具体插叙的字段 public string Field { get; set; } //操作符 public string Operator { get; set; } //字段的值 public string Value { get; set; } //字段查询组合的关系 public string Relation { get; set; } //把界面传的值转成List集合 public static List BuildConditions(string[] fields, string[] operators, string[] values, string[] relations) { var conditions = fields.Select((t, i) => new Conditions { Field = t, Operator = operators[i], Value = values[i], Relation = relations[i] }).ToList(); return conditions; } }

带有where的Lambda表达式转换器:

public static class WhereLamdaConverter { private class ParameterReplacer : ExpressionVisitor { public ParameterExpression ParameterExpression { get; private set; } public ParameterReplacer(ParameterExpression paramExp) { this.ParameterExpression = paramExp; } public Expression Replace(Expression exp) { return this.Visit(exp); } protected override Expression VisitParameter(ParameterExpression p) { return this.ParameterExpression; } } public static Expression> True() { return item => true; } public static Expression> False() { return item => false; } public static Expression> And(this Expression> expLeft, Expression> expRight) { var candidateExpr = Expression.Parameter(typeof(T), "item"); var parameterReplacer = new ParameterReplacer(candidateExpr); var left = parameterReplacer.Replace(expLeft.Body); var right = parameterReplacer.Replace(expRight.Body); var body = Expression.And(left, right); return Expression.Lambda>(body, candidateExpr); } public static Expression> Or(this Expression> expLeft, Expression> expRight) { var candidateExpr = Expression.Parameter(typeof(T), "item"); var parameterReplacer = new ParameterReplacer(candidateExpr); var left = parameterReplacer.Replace(expLeft.Body); var right = parameterReplacer.Replace(expRight.Body); var body = Expression.Or(left, right); return Expression.Lambda>(body, candidateExpr); } public static Expression> Parse(string member, string logic, string matchValue) { if (string.IsNullOrEmpty(member)) { throw new ArgumentNullException("member"); } PropertyInfo keyProperty; ParameterExpression pExp; keyProperty = typeof(T).GetProperties().FirstOrDefault(item => item.Name.ToLower().Equals(member.Trim().ToLower())); pExp = Expression.Parameter(typeof(T), "p"); if (keyProperty == null) { throw new ArgumentException("member不存在"); } Expression memberExp = Expression.MakeMemberAccess(pExp, keyProperty); if (logic != "Contains") { bool memberIsNullableType = keyProperty.PropertyType.IsGenericType && keyProperty.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>); if (memberIsNullableType) { memberExp = Expression.MakeMemberAccess(memberExp, keyProperty.PropertyType.GetProperty("Value")); } Type valueType = keyProperty.PropertyType; if (memberIsNullableType == true) { valueType = valueType.GetGenericArguments().FirstOrDefault(); } object value = matchValue; if (valueType == typeof(string) == false) { if (valueType != null) value = valueType.GetMethod("Parse", new[] { typeof(string) }).Invoke(null, new[] { value }); } var valueExp = Expression.Constant(value, valueType); var expMethod = typeof(Expression).GetMethod(logic, new Type[] { typeof(Expression), typeof(Expression) }); var body = expMethod.Invoke(null, new object[] { memberExp, valueExp }) as Expression; var lamdaexpression = Expression.Lambda(body, pExp) as Expression>; return lamdaexpression; } else { MethodCallExpression body = null; body = Expression.Call(memberExp, typeof(string).GetMethod(logic), Expression.Constant(matchValue, typeof(string))); var lamdaexpression = Expression.Lambda(body, pExp) as Expression>; return lamdaexpression; } } public static Expression> Where(List conditions) { Expression> expression = null; if (conditions != null && conditions.Count > 0) { var firstexpression = Parse(conditions[0].Field, conditions[0].Operator, conditions[0].Value); if (conditions.Count <= 1) return firstexpression; for (var i = 1; i < conditions.Count; i++) { var rightexpression = Parse(conditions[i].Field, conditions[i].Operator, conditions[i].Value); expression = conditions[i - 1].Relation.ToUpper().Equals("AND") ? firstexpression.And(rightexpression) : firstexpression.Or(rightexpression); } } return expression; } }

把映射的代码移到DDD.Application工程ProductAppService类中:

IRepository productrepository = ServiecLocator.Instance.GetService(typeof(IRepository)) as IRepository; Product product; //public void CreateProduct(string productname, string color, string size, // int count, decimal unitprice, string categoryname, string description) //{ // product.CreateProduct(productname, color, size, count, unitprice, categoryname, description); // context.Commit(); //} public ProductAppService() { product = new Product(productrepository); //完成映射的创建 ProductMapping(); } //在调用构造函数的时候完成映射的创建 private void ProductMapping() { //从界面的DTO持久化领域对象 var mapin = Mapper.CreateMap(); //指定属性的对应关系 mapin.ConstructProjectionUsing(p => new Product { ProductName = p.Name, Size = p.Size, Color = p.Color, Count = p.Amount, UnitPrice = p.UnitPrice, ProductCategory = new ProductCategory { Id = Guid.NewGuid(), CategoryName = p.PCategoryName, Description = p.PDescription } }); //返回界面的东西 var mapout = Mapper.CreateMap(); mapout.ConstructProjectionUsing(p => new ProductDTO { Name = p.ProductName, Size = p.Size, Color = p.Color, UnitPrice = p.UnitPrice, PCategoryName = p.ProductCategory.CategoryName, PDescription = p.ProductCategory.Description, Amount = p.Count }); } ///

/// 被前端调用的方法 /// /// /// /// /// public List GetProductDTOSByCondition(List conditions, RequestPage request, out int totalcount) { return productrepository.GetByConditionPages(conditions, request, out totalcount); }

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:算法(一)
下一篇:国家卫健委:2日新增本土确诊病例15例 其中吉林8例!
相关文章

 发表评论

暂时没有评论,来抢沙发吧~