I like the simplicity of the Simple Repository , this looks ideal for simple CRUD operations.
However, if I have a requirement for a complex query on top and ideally want my app to call a Stored Proc what is the recommended way to do this?
Does ActiveRecord cater for Stored Procs?
I will be using this in a ASP.NET MVC app and really looking for the easiest (to implement) solution that still offers me some flexibility/control in certain situations (e.g. use a proc when I want/need to).
I am aware of LINQ to SQL, Entity Framework and NHIbernate but would prefer Subsonic.