c# - Hosting ASP.net web api (odatacontroller) inside silverlight site -
i want expose odata resources silverlight site. wcf data services doesn't provide features need need use asp.net web api instead.
is possible host such asp.net web api inside silverlight site?
the requested support is: filtering iqueryable of resource before returning results. in wcf data service can use queryinspectors filter each row separatly affect performance.
thanks!
eran.
you can host asp.net web api in asp.net web application, work. yes, it's possible filter iqueryable before data returned. take @ odata samples in web api source code examples of how can done. assumption wcf incorrect, queryinspector modifies linq expression before goes data store, data filtered in store , not in memory.
Comments
Post a Comment