开发者

Use of "stores" within a web application

开发者 https://www.devze.com 2022-12-17 00:49 出处:网络
I see heavy use of \"store\" objects in the web app I am working on. Is there a name for this pattern and开发者_StackOverflow中文版 would you say these types are in the BLL or DAL?

I see heavy use of "store" objects in the web app I am working on. Is there a name for this pattern and开发者_StackOverflow中文版 would you say these types are in the BLL or DAL?

These stores contain fragments of what I would consider a classical DAL type, associated with a single type.

For example, we have a TabStore containing methods for the persistance and retrieval of Tabs. Within each method in the TabStore there is code to invoke the appropriate NHibernate query.

What are the pitfalls (if any) of working with this pattern? Is it really a simple attempt to separate what might once have been a monolithic Dal type into more manageable, smaller types?

Example method:

public IList<Tab> GetAllTabInstancesForUserId(Guid userId)
{
    IList<Tab> tabInstances =
                UoW.Session.CreateQuery("from Tab t where t.UserId=:userId order by t.TabOrder")
                   .SetGuid("userId", userId)
                   .SetCacheable(true)
                   .List<Tab>();

    return tabInstances;
}


It may be what is more commonly known as a Repository.

The abstract Repository belongs in the Domain Model, but should be implemented by concrete classes in a separate Data Access Component.


If I understand the question correctly, "stores" are more related to DAL than to BLL, since there should be little logic in them - after all their role is just "storing".


Some more details would definitely be helpful, including code snippets where the 'store' is used...

But based on what you have in your question, it sounds like the developers used the term 'store' instead of 'Repository' which implies the Repository Pattern (which are related to your Data Acess Layer).

After your update...it definitely seems like what the developers originally called a 'store' is a 'repository'.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号