My MVC application accesses DB2/400.
My DAL dll is being build around ADO.NET.
I need to build some simple controller actions. I dont want to go all over execute datareader methods just to get something simple and make my DAL fat.
These actions are mostly generic SQL Statements that fix some bugs in our enterprise systems, so i want to keep them simple and to alter them easy.
Is it ok if i use the webmatrix.data db api as i am using it in Web Pages ?
If not is there any simple alternative to that?