Tagged Questions
0
votes
2answers
67 views
Using IQueryable select to filter columns
I've been exploring WEB API based on the guide at www.asp.net, and I've run into a problem when trying to filter columns from a table.
My code is simply this:
// GET api/Admin
public ...
0
votes
1answer
99 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",
...
3
votes
1answer
134 views
EF Reference gets lost when Web API returns IQueryable
I have been looking for quite some time now on this problem.
Here's the deal.
I'm building a website that calls to a Web API to get its data. My Web API uses a library, working with repository ...
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
336 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
452 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 ...
0
votes
1answer
343 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 ...
6
votes
5answers
3k views
IQueryable serialization (web api)
Why isn't this working?:
var surveys = db.Surveys.Where(s => s.Author.UserId == user.UserId);
return from survey in surveys
select new
{
...
0
votes
0answers
116 views
Using Transfer Object in Asp.Net Web Api
I am playing with Asp.net Web Api and trying to use TransferObject instead of EntityObject. But in my first attempt Generate SQL doesn't contain the Query words. Just filtering on memory. And I search ...
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 ...
4
votes
2answers
653 views
Returning IQueryable but need Raven stats to insert TotalResults header
I have a WebApi method which returns an IQueryable of RavenDB documents. The caller needs to know the number of possible results (because the actual results are limited/paged).
So, I have something ...
3
votes
1answer
214 views
Does it make sense for an ASP.NET Web API method to return IQueryable<T>?
I'm working on a project that uses the new Web API and I noticed somebody is returning an IQueryable<T> from a Get method.
My understanding is that IQueryable is useful for improving ...
0
votes
1answer
805 views
ASP.NET WebApi: IQueryable support with MongoDB official C# driver
I am trying to implement Api Controller which gets data from MongoDB. It would be nice to support IQueryable interface for OData when C# driver since version 1.4 supports LINQ.
public class ...
0
votes
1answer
233 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 ...
