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. Tables and Views

toDataSet

PrevioustoQueryNextStored Procedures

Last updated 1 year ago

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

const dataset = Categories.select(CategoriesField.CategoryName).toDataSet();

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