Dofactory.com
Dofactory.com
 Back to list
Views:   9.2K
Replies:  1
Archived

How add "Repository Pattern" in Pattern in Action 4.5 ?

Hi all,
in Pattern in Action 4.0 the repository was in Presentation Layer, and it used to call WCF Service.
In Pattern in Action 4.5 i move the repository in Service Layer to interact with DataLayer, i want ask if this a best practice or i'm making an error.

I found this comment in source code of Service Implementation: Service could be split up in individual Repositories: Product, Category, etc...
Ok supposed, i create a ProductRepository, in ShopController in overloaded 'injectable' constructor i add this code:

IService service { get; set; }
ActionService.IProductRepository productService { get; set; }

public ShopController() : this(new Service(), new ActionService.ProcuctRepository()) { }

It is a good practice?

Can you provide me an example ?

Thank you in advantage!
Vito Iacono, May 17, 2014
Reply 1
I just finished a series on the Repository Pattern with the Unit Of Work and Entity Framework 6.  This will be a departure from the DoFactory PIA application but you might see similarities because I borrowed many of their features to build my version of the Repository Pattern.

Keep in mind that the Repository Pattern, as I mention in my series, is more of a concept that a strict pattern, which allows you to interpret it as you will.  The pattern that I create may need to be tweaked for your application, but that's perfectly OK. 

I developed my version to try to keep it as simple as possible and use as many of the features from tools I would be using such as Entity Framework at my disposal.  This includes being able to use the DbContext and simple C# classes as my POCO Entities.  And using DataAnnotations on my entity classes for validation and other UI helping features.  This allows for an easy way to maintain my application when it changes.

Take a look and see if it can help you design your repository pattern for your purposes.  http://www.designpatternscentral.net/s/1075.

To answer your question about more than one service or data access repository instance in your controller constructor, this practice is fine and used quite often.  To be clear, I mean that the practice of injecting all necessary services into your controller constructor is perfectly fine, but I would always just call some service implementation, and not also data objects implementations.  To be maintainable, it's better to always make it a practice to have your client applications, in this case your MVC application, just call any and all services, and not data repositories directly.

You can also find this practice in my series.  So yes, it's fine.

I hope this helps.

King Wilder
King Wilder, Sep 21, 2014
Stay Inspired!
Join other developers and designers who have already signed up for our mailing list.
Terms     Privacy     Cookies       Do Not Sell       Licensing      
Made with    in Austin, Texas.  - vsn 44.0.0
© Data & Object Factory, LLC.