TypeScript ORM
  • Introduction
  • Installation
  • Base Classes
  • Tables and Views
    • Select
    • Insert/Update
    • Delete
    • toQuery
    • toDataSet
  • Stored Procedures
    • Execute
    • toProcedure
    • toDataSet
Powered by GitBook
On this page
  1. Stored Procedures

toDataSet

PrevioustoProcedure

Last updated 1 year ago

Use the toProcedure method to transform an entity ORM object into a object. This method transform allows an ORM procedure to participate in the .

const dataset = CustOrderHist.procedure().toDatSet();
    
new wire.datatables().render("#table", {data: dataset});
WireBootstrap DataSet
dynamic bindings of UI components