My company has a product that ultimately exposes a bunch of object types that I want to be able to interact with via a custom DbContext and DbSet classes so that I can perform CRUD activities against them in an MVC based website.
So basically what I want to do is have the equivalent of DbContext (http://msdn.microsoft.com/en-us/library/gg679505(v=vs.103)) and DbSet such that they are not tied into a database in the background, but point at our server product instead.
But I have no real idea on how to do this. Is this even possible or would it be some kind of nightmare to achieve. I've searched around but have not had much luck finding anything of this nature, which probably indicates that it is a nightmare.
Any pointers in the right direction is much appreciated.
Thanks