I have ben requested to create an application that uses an existing DB with stored procedures (insert
, update
, delete
) and they don't want to use Entity Framework
.
One way is to create my own Data Access Layer using System.Data.DataSet
but I would like to know if there is any existing library or something I can use where I can fill objects from SP's and also update data using SP's.
Any clue?