I'm working on a project in which we have a database, data layer (entity framework), business layer and web/UI layer.
I want to use ASP.NET Dynamic Data for the web layer, but don't want it to access the data layer or database, as I want it to be purely running off business logic, and not directly accessing the data.
However, it appears that Dynamic Data only allows Linq-to-SQL or entity framework data sources to be used.
Has anyone used it with business-layer objects instead?
Would this be difficult to implement?