ORM

ORM is an acronym for object-relational mapping which is a way in which data types in one system can be represented in another using object-oriented programming. Common ORM solutions in modern server-side programming include NHibernate and Entity Framework.

WireBootstrap has an ORM solution built on top of it's base query features that creates TypeScript classes, interfaces, and enums from tables, views, and stored procedures inside a database, data service, or other data connector end-point. The resulting TypeScript classes allow CRUD operations such as reading, writing, deleting, and updating these objects directly from JavaScript.

Visit the WireBootstrap ORM documentation for more on this solution.

Last updated