There is Campaign Entity and for that, I have CampaignRepository which have this functions

  1. public IList FindAll();
  2. public Campaign FindByCampaignNumber(string number);

But now i want this criterias -:

  1. Find campaigns that are created today.
  2. Find campaigns that are created in this month
  3. Find top 5 latest campaigns.
  4. Find campaigns that are created in this year.

So for all these campaigns filters,

Do i create separate function for each of them in repository ?

and implement like this way.

Getall campaigns and then filter required campaigns, but i do not want all campaigns. While searching in google i find this solution's

1: http://russelleast.wordpress.com/2008/09/20/implementing-the-repository-and-finder-patterns/

Is there any method i can avoid multiple functions or do i go ahead and create seperate functions for each of this filter ?

link|improve this question

79% accept rate
feedback

4 Answers

up vote 2 down vote accepted

Have you considered implementing Specification pattern in your application? Maybe it looks like an overkill, but it may prove useful if your app will have some complex user filter options.

class CampaignSpecification
{
    public CampaignSpecification Number(string number);
    public CampaignSpecification DateBetween(DateTime from, date to);
    public CampaignSpecification Year(DateTime year);
} //I have omitted all the AND/OR stuff it can be easily implemented with any SQL like query language

Here is an example how loading from the repository may look like

var  campaignList = CampaignRepository.load(
            new CampaignSpec()
                .Number("2")
                .Year(DateTime.Now);

Also I'd like to add that it depends much on what kind of data access solution you are using, it makes implementing easier when you know what kind of API you will be using(Criteria API, SQL or whatever) so you can tweak your Specification interface to make its implementation simpler.

UPDATE: if you are implementing specifications in .NET using linq and nHibernate please check out http://linqspecs.codeplex.com/

link|improve this answer
If i go with this solution, russelleast.wordpress.com/2008/09/20/… – kamal Aug 7 '11 at 21:45
russelleast.wordpress.com/2008/12/11/… also continuation of link given above – kamal Aug 7 '11 at 21:46
the second link is better as it shows Method Chaining part answering your question :) Of course it's up to you to decide. – Boris Treukhov Aug 7 '11 at 22:04
How do i implement specification. Do i fetch all campaigns and then loop on it and then apply specification on each entity. Is that correct. – kamal Aug 8 '11 at 17:49
show 6 more comments
feedback

Here is how I would do this:

class Campaigns{
  IEnumerable<Campaign> All(){...}
  IEnumerable<Campaign> ByNumber(int number){...}
  IEnumerable<Campaign> CreatedToday(){...}
  IEnumerable<Campaign> CreatedThisMonth(){...}
  IEnumerable<Campaign> CreatedThisYear(){...}
  IEnumerable<Campaign> Latest5(){...}

  private IQueryable<Campaign> GetSomething(Something something){
    //used by public methods to dry out repository
  }
}

Reasoning is simple - it matters by what You are interested to look for campaigns (that knowledge is part of Your domain). If we explicitly state functions to reflect that, we will always know it.


Is it appropriate to add all this methods in campaign repository ?

I don't see anything wrong with that.

Arnis i want some code, how u implementing Created today function in domain itself, Are you injecting repository here in this function ? Thanks for your cooperation

I wouldn't implement CreatedToday function in my domain. It would sit in repository and repository implementations should not be concern of domain. If You mean how I would use Campaign repository and if it should be used from domain - no, it should not be used from within of domain. If You mean if I would inject repository inside of repository - You are listening too much of xzibit.

link|improve this answer
Is it appropriate to add all this methods in campaign repository ? – kamal Aug 8 '11 at 16:16
Arnis i want some code, how u implementing Created today function in domain itself, Are you injecting repository here in this function ? Thanks for your cooperation. – kamal Aug 8 '11 at 17:24
How about using specification ? – kamal Aug 8 '11 at 18:58
@kamal in my mind that seems like unnecessary complexity – Arnis L. Aug 8 '11 at 19:06
@Arnis. The code you provided may start suffering from 'method explosion' if you add few more methods to it. In DDD you deal with this using Specification pattern. – Dmitry Aug 8 '11 at 19:58
show 3 more comments
feedback

I would go with creating two Specifications: TopCampaignSpec and CampaingCreatedSpec.

var spec = CampaignCreatedSpec.ThisYear();
var campaigns = CampaignsRepository.FindSatisfying(spec);

CampaingCreatedSpec can also be replaced with more generic DateRange class if you need this functionality elsewhere:

var thisYear = DateRange.ThisYear();
var campaigns = CampaignsRepository.FindByDateRange(spec);

I also highly recommend staying away from 'generic' repositories and entities. Please read this

From DDD perspective it does not matter whether data access code is implemented as SQL/HQL/ICriteria or even web service call. This code belongs to repository implementation (data access layer). This is just a sample:

public IList<Campaign> FindByDateRange(CampaignCreatedSpec spec) {
    ICriteria c = _nhibernateSession.CreateCriteria(typeof(Campaign));
    c.Add(Restrictions.Between("_creationDate", spec.StartDate, spec.EndDate));
    return c.List<Campaign>();
}
link|improve this answer
If i go with this solution, russelleast.wordpress.com/2008/09/20/… – kamal 1 min ago edit – kamal Aug 7 '11 at 21:47
russelleast.wordpress.com/2008/12/11/… also continuation of link given above – kamal Aug 7 '11 at 21:48
Do i create two methods in repository for two specification or do i create it in application layer, and get all campaigns and then apply specification there ? – kamal Aug 7 '11 at 21:59
Two methods in repository. Specification is part of you model / business logic layer. But getting the data based on this specification is the responsibility of data access layer (your repository implementation). – Dmitry Aug 7 '11 at 23:53
dmitry you told me to convert specification into hql or nhibernate criteria, I don't know how to do that . Do you have any code or link. Meanwhile i am applying specification like this. devlicio.us/blogs/casey/archive/2009/03/02/… – kamal Aug 9 '11 at 9:40
show 2 more comments
feedback

You should be able to do all of the above with the following repository method:

List<Campaign> findCampaigns(Date fromCreationDate, Date toCreationDate, int offset, Integer limit) {

   if (fromCreationDate != null) add criteria...
   if (toCreationDate != null) add criteria...
   if (limit != null) add limit...
}

This is how I do it and it works very well.

link|improve this answer
OK, with your method that also came to my mind, but now suppose my criteria increases then do i add more params in findcampaigns method or do i separate out another method. – kamal Aug 7 '11 at 22:23
Yes you simply add more parameters. But remember that if you do it the other suggested way, you can almost as well use JPQL/JPA criteria API directly, plus having a find method that is too flexible will make it very difficult to test if you are doing integration testing. – Piotr Blasiak Aug 8 '11 at 5:39
I am using c#, not java. – kamal Aug 8 '11 at 9:23
Ok, same principle would apply. By creating some kind of dynamic filtering you will make life very difficult for yourself. Testing will be difficult etc. – Piotr Blasiak Aug 8 '11 at 14:09
@Piotr: Having long list of parameters is a well known code smell. It is hard to read, understand, hard to test etc. Do not advice it to anyone. – Dmitry Aug 8 '11 at 19:49
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.