Is it possible to read a DataSource using a Route Name rather than a Controller / Action ?
// Controller & Action
.Transport(m => m.Read(
"GetPagedGridData"
,
"GridView"
,
new
.....
// Route Name ??
.Transport(m => m.Read(
"MyRouteName??"
,
new
.....