I have table StudentAccount with columns Code,Amount,Description,Valid Period for selected period there might be same code and description write a linq query that gets the data Code/Description needs to be unique for the selected date range.( the date is in the format 1/1/1990-1/1/1991)

    public IEnumerable<StudentAccount> StudentAccountdata
    {
        get { return Context.StudentAccount.Where(q=>q.Active).OrderBy(q =>q.Description).ToList(); }            
    }
link|improve this question

2  
how can u say like this..if u can answer it fine..dont make silly comments..problem can be small or big – user1016740 Feb 25 at 3:50
What have you tried? – Luke McGregor Feb 25 at 4:01
feedback

1 Answer

up vote 1 down vote accepted

Use IEqualityComparer :

public class StdComparer : IEqualityComparer<StudentAccount>
{

    #region IEqualityComparer<StudentAccount> Members

    public bool Equals(StudentAccount x, StudentAccount y)
    {
        return x.Code == y.Code && x.Description == y.Description;
    }

    public int GetHashCode(StudentAccount obj)
    {
        return 0;
    }

    #endregion
}

Then

public IEnumerable<StudentAccount> StudentAccountdata
{
    get { return Context.StudentAccount.Where(q=>q.Active && 
                         q.Date >= BeginDate && 
                         q.Date <= EndDate)
                         .OrderBy(q =>q.Description).Distinct(new StdComparer()); }            
}

If that solve your problem, Please mark my answer as Right

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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