Generic base layer for linq CRUD statements
In this post I will attempt to demonstrate building an abstract generic layer for managing a linq datacontext and automatically exposing methods for CRUD(Create, Read, Update, Delete). Essentially this method contains three components, a BaseManager which manages a DataContext, and entity object which is matched to a table using linq, and a DataCo...
read more