Select IN query using LINQ

In our SQL Query there is a situation when we want to fetch records based on records within the a Set of RecordID(primary key) Lets look in to one example I have a table  Employee which has the columns EmpId, EmpName, EmpDesg etc. You want to select the Employee Records from Employee table with EmpID within 61,62,63 […]

Read more →

More on MVP Pattern – Part 2

Model-view-presenter (MVP) is a user interface design pattern engineered to facilitate automated unit testing and improve the separation of concerns in presentation logic. The model is an interface defining the data to be displayed or otherwise acted upon in the user interface. The view is an interface that displays data (the model) and routes user […]

Read more →