How to send DataTable from server to client or vice-versa?

I would like to send DataTable from server to client in C# and can’t find any topic on how to do that?

Any help would be appreciated.

Hello

You need to serialize DataSet and then send it. Take a look at the ADO.NET sample ( http://wiki.remobjects.com/wiki/ADO.NET_Sample_(.NET) ).
However I would strongly suggest you to take a look at the Data Abstract. It is more situated to work with databases and greatly simplifies this.
This is an introductory guide for Data Abstract that covers some of its basic concepts: http://blogs.remobjects.com/blogs/antonk/2013/10/11/p6339

Hope that helps