zoukankan      html  css  js  c++  java
  • Repository模式

    望文生义:

    Repository [rɪˈpɑzəˌtɔri]

    释义:仓库,贮藏所,受人信托的人,心腹,亲信

    Repository模式可以称为仓储模式,或资源库 

     

    大师解释:

    by Edward Hieatt and Rob Mee

    Mediates between the domain and data mapping layers using a collection-like interface for accessing domain objects.

     

    A system with a complex domain model often benefits from a layer, such as the one provided by Data Mapper, that isolates domain objects from details of the database access code. In such systems it can be worthwhile to build another layer of abstraction over the mapping layer where query construction code is concentrated. This becomes more important when there are a large number of domain classes or heavy querying. In these cases particularly, adding this layer helps minimize duplicate query logic.

    A Repository mediates between the domain and data mapping layers, acting like an in-memory domain object collection. Client objects construct query specifications declaratively and submit them to Repository for satisfaction. Objects can be added to and removed from the Repository, as they can from a simple collection of objects, and the mapping code encapsulated by the Repository will carry out the appropriate operations behind the scenes. Conceptually, a Repository encapsulates the set of objects persisted in a data store and the operations performed over them, providing a more object-oriented view of the persistence layer. Repository also supports the objective of achieving a clean separation and one-way dependency between the domain and data mapping layers.

    个人理解:

    1,Repository主要是用来隔离domain与持久层, 就像是一个存储在内存中的domain对象集合 。

    2, 方便测试,因为可以把针对数据库的持久化操作替换成内存中操作,解除对数据库依赖。

    3, 数据存取集中放在一起,方便阅读和维护。

      如,现在要对数据存取加上缓存功能。只要统一修改Repository层即可。

    参考:

    http://martinfowler.com/eaaCatalog/repository.html

    http://msdn.microsoft.com/en-us/library/gg416511(VS.98).aspx



    签名:删除冗余的代码最开心,找不到删除的代码最痛苦!
  • 相关阅读:
    根据方法名执行方法的例子
    修改cmd的默认路径
    事件处理程序的处理顺序问题
    类型事件定义
    修改应用程序搜索程序集的私有路径
    What's New in Visual Studio 2010
    IE 8 中选项卡通过颜色分组
    再谈CLR:无法避免的装箱
    环境变量(Environment Variable)那点事
    默认情况下程序启动后到底是几个线程?
  • 原文地址:https://www.cnblogs.com/season2009/p/2506527.html
Copyright © 2011-2022 走看看