servicestack
servicestack
![FredFlintstone](https://secure.gravatar.com/avatar/d1529ea8d2d98763157ab39cb292e20a/?default=https%3A%2F%2Fvanillicon.com%2Fd1529ea8d2d98763157ab39cb292e20a_200.png&rating=g&size=120)
has anyone managed to wire up datatables with servicestack? (http://www.servicestack.net/) i can't seem to configure the method signature to match that which datatables requires.
eg
public object Get(MyObject request)
{...}
as opposed to
public dynamic Get(int sEcho,
int iDisplayStart,
int iDisplayLength,
string sSearch,
int iSortCol_0,
string sSortDir_0)
{...}
which is the sort of thing datatables would look for.
eg
public object Get(MyObject request)
{...}
as opposed to
public dynamic Get(int sEcho,
int iDisplayStart,
int iDisplayLength,
string sSearch,
int iSortCol_0,
string sSortDir_0)
{...}
which is the sort of thing datatables would look for.
This discussion has been closed.
Replies
Allan