当前位置: 网学 > 编程文档 > 其他类别 > 正文

分享基于EF+WCF的通用三层架构及解析

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/01/12
  • MVC附加用户Context信息到服务端
    1. protected override void OnActionExecuting(ActionExecutingContext filterContext)  
    2.          {  
    3.              base.OnActionExecuting(filterContext);  
    4.              WCFContext.Current.Operater = new Operater(){Name = "guozili",Time = DateTime.Now,IP = Fetch.UserIp,};  
    5.          } 
    • BLL取出Context信息并调用数据层
    1. public PagedList<Product> GetProducts(int pageSize, int pageIndex, int categoryId = 0)  
    2.          {  
    3.              //Test WCFContext  
    4.              var context = WCFContext.Current.Operater;  
    5.              return this.dao.FindAllByPage<Product, int>(p => categoryId == 0 ? true : p.CategoryId == categoryId, p => p.Id, pageSize, pageIndex);  
    6.          } 
    • DAL调用通用的Repository接口
    1. public PagedList<T> FindAllByPage<T, S>(Expression<Func<T, bool>> conditions, Expression<Func<T, S>> orderBy, int pageSize, int pageIndex) where T : class 
    2.          {  
    3.              var queryList = conditions == null ? context.Set<T>() : context.Set<T>().Where(conditions) as IQueryable<T>;  
    4.    
    5.              return queryList.OrderByDescending(orderBy).ToPagedList(pageIndex, pageSize);  
    6.          } 

    6. 最后提供源码下

    http://files.cnblogs.com/guozili/EasyEF.rar

    原文链接:http://www.cnblogs.com/guozili/archive/2012/09/03/2667429.html

    网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号