How to fill Editor with a DataSet

How to fill Editor with a DataSet

farhadtablefarhadtable Posts: 47Questions: 27Answers: 1

I have only access to a dataset of objects, i.e. List<MyModel>().
How can i fed this list into Editor() class?

In the other words, currently Editor() accepts Database() object which is hardly coupled with SQLServer or MySql! while I am using just some webservice calls which returns only some dataset.

how to fill Editor with that sort of datasets?

P.S: I m currently thinking about Reading and filing DataTable, there is no other Create/Update/Delete functions requested for now.

Answers

  • allanallan Posts: 61,446Questions: 1Answers: 10,054 Site admin

    Unfortunately you currently can't use the Editor .NET class without a database connection. Instead, what you would need to do is use the client / server documentation to get the data that Editor submits, modify your objects as you require and then return the JSON that Editor needs back to the client-side.

    The Editor class is specifically designed to operate with an SQL connection only.

    Allan

  • farhadtablefarhadtable Posts: 47Questions: 27Answers: 1
    edited November 2016

    How can i use sqllite ?

  • farhadtablefarhadtable Posts: 47Questions: 27Answers: 1

    How can I contact you by Skype ?

  • allanallan Posts: 61,446Questions: 1Answers: 10,054 Site admin

    We can offer live support via the support and maintenance contacts.

    Allan

This discussion has been closed.