This is the default action from the "View" of my MVC4 application....public ActionResult Index(string sort = "R_ResDate",
string sortdir = "DESC",
int page = 1)
{
List<Result> results = modRes.Resu...
This question is continuation of ...Getting Count() property in Dynamic Lambda Expression...I had asked if we can put Count() Method in dynamic lambda expression. I could do it using ...Dynamic Expression API.... Answer provided by - xmojmr...But recently...
I have two tables in database. Ticket and TicketNumbers. I would like to write Linq to count the number of tickets that have numbers matching those passed into this function. Since we don't know how many numbers must be matched, the Linq has to be dynamic...