Does RESTier supports CRUD directly to database tables or it only operates on strongly typed entities?
I would like to use RESTier but my database tables/views will be created by the users in future and are not known. Is RESTier suitable for such a need? In other words, does RESTier supports CRUD directly to tables or it only operates on dbcontext and strongly typed entities? Thanks.
"Restier is an API development framework for building standardized, OData V4 based RESTful services on .NET." -- You need finalized your database shemas and put them as Restier's input, and Resiter will found "OData V4 based RESTful services on .NET" based on datacontext and entity classes you provide and conventional rules you can customize. It's easy and fast to be implemented. In addition,OData team also provide scaffolding tools which can generate client sources to access restier service and it is easy to implment CRUD on a certain entity or utilize odata amazing querying.
Closing this for now, we may consider it as a goal for Restier 2.0.