Tagged Questions
0
votes
1answer
102 views
How to format iqueryable mvc 4 web api requests?
I'd like to use iqueryable on all my collections so that I get all of the odata features. However I need to format the response of the request with the following fields;
{
href: "url to resouce",
...
0
votes
2answers
133 views
Risks of using OData and IQueryable
I have seen many tutorials about making SPA (single page application) and many of them uses an external library such as breezejs and jaydatajs in order to get an automated dataservice layer.
These ...
1
vote
2answers
147 views
using the OData Queryable with a repository?
I have this repository method:
public IQueryable<TModel> GetAll()
{
using (var context = new DatabaseContext())
{
return ...
1
vote
1answer
337 views
Web API, IQueryable, OData and HttpResponseMessage as return-type?
During the past days I have seen some great examples of how to use the HttpResponseMessage-type as a return-type for the Web API actions.. which then makes Unit-testing alot easier since it makes it ...
0
votes
3answers
461 views
Using EF and WebAPI, how can I return a ViewModel AND support IQueryable/OData? [duplicate]
I've got an ASP.NET WebAPI project. I've recently created EntityFramework entities for all my data tables. But I don't want to expose my data layer & schema to my users. How can I map my entities ...
1
vote
1answer
346 views
Wrapping a Web API response in JSON but still having it work with IQueryable and oData
I have an ASP.NET Web API project, and I want to use oData filters in the project, with the ASP.NET oData preview package. This means I need to use IQueryable as the response type.
Unfortunately, the ...
2
votes
1answer
205 views
Is it possible to stream entities over OData?
I'm brand new to OData, so please bear with me.
Assuming that I'm using IQueryable<> with OData, and the number of records generated by the server is large (say 10000), is it possible to start ...
0
votes
1answer
121 views
Where can I find a SolrNet IQueryable provider?
I am using WebApi and want to implement OData for one of my SolrNet resources.
WebApi supports OData if you return it an IQueryable. So I need an IQueryable provider for SolrNet queries.
Does anyone ...
1
vote
1answer
214 views
Dapper, ODATA, and IQueryable in ASP.NET
I saw the great performance of Dapper and some samples of how to use it.
I was wondering if I can use it to provide IQueryable data and integrate it with UI layer using ODATA to transfer data to the ...
0
votes
2answers
233 views
How does client filtering work for a WCF IQueryable method?
I am new to WCF and I need help understanding something.
I created a WCF data service that returns DTOs which are mapped from entities by the service. On my service contract interface I have some ...
0
votes
3answers
204 views
WebApi with Linq “Extra content at the end of the document” error
I have the following error when I try to query my MVC 4 WebApi service
Extra content at the end of the document
Below is a rendering of the page up to the first error.
55Author ...
2
votes
0answers
182 views
odata filering of complex types
I have complex object type in Xml it looks like:
<Event>
<id>3198588</id>
<title>SunSay</title>
<artists>
<artist>SunSay</artist>
...
0
votes
1answer
234 views
Null Reference Exception occurs when using odata in Web API calls
I have the following Product class:
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
}
and the following Web API controller class:
public class ...
1
vote
2answers
615 views
Is there a way to dial down the OData Service reflection provider?
This is a continuation of an issue I'm still experiencing here. I'm trying to prevent the OData reflection provider from trying to expose ALL of the CLR classes in my assembly.
Consider the ...
2
votes
2answers
903 views
How can you expose a multi-layer model that has derived classes and members for OData services?
I'm trying to expose a model to be available for OData services. The approach I'm currently taking is along the lines of:
1) Defining a class in the model to expose IQueryable collections such as:
...
3
votes
1answer
1k views
Which is easier, write a Custom OData uri parser or a custom IQueryable provider?
I'm wanting to create an OData service that returns data from multiple sources. For this reason I cannot use WCF Data Services with any of the out-of-box providers, plus we really want more control ...
0
votes
0answers
175 views
IQueryble<T> to ToList() conversion not working
I'm trying to consume a OData service that returns IQueryble as result. The following code snippet is for illustration:
var indices = from indice in client.IndiceTickers
where ...
0
votes
1answer
300 views
Exposing Azure Table with oData but working with “Domain” objects not Azure Entity Objects
Pardon my terminology if incorrect but I'd rather not expose the Azure Table Entity objects directly to the end user, although I want to expose IQueryable.
How can I convert an ...

