August 2010
10 posts
Harrisburg Senators #baseball
4 tags
4 tags
5 tags
Your first MVP asp.net application
First off what is MVP? MVP stands for Model View Presenter which is some what similar to the idea of MVC (Model View Controller). MVP is just another pattern that is used to help separate your concerns from your display logic, your data, and how they two are orchestrated together.
Model – The object that is usually a simple poco object that is the data needed for your view
View – The view is...
5 tags
Enterprise Library 5.0 Data Access Block &...
We all love the Data Access block at making sql access just a slightly bit simpler, however in using the Data Access block we slowly realize that a good portion of our time is spent writing code that maps our result set to our objects. This process is time consuming and repetitive.
Consider the following way of querying data.
We have a stored procedure that simply returns one row from a table...
4 tags