Quantcast
Channel: ASP.NET MVC / Web API / Web Pages
Browsing all 7925 articles
Browse latest View live
↧

Created Unassigned: SelectExpandWrapper can't be converted to IQueryable. [1020]

EntitySetController currently returns a IQueryable<T> for its Get() function. When supplying the $select query, it'll throw an ArgumentException stating that it is unable to convert the...

View Article


Edited Unassigned: SelectExpandWrapper can't be converted to IQueryable. [1020]

EntitySetController currently returns an IQueryable<T> for its Get() function. When supplying the $select query, it'll throw an ArgumentException stating that it is unable to convert the...

View Article


Edited Unassigned: SelectExpandWrapper can't be converted to IQueryable. [1020]

EntitySetController currently returns an IQueryable<T> for its Get() function. When supplying the $select query, it'll throw an ArgumentException stating that it is unable to convert the...

View Article

Edited Unassigned: Make FacebookAuthorizeAttribute search for signed request...

Facebook release a cookie named "fbsr_##APPID##" to store the signed request when using the Javascript SDK.Why don't you update the FacebookRequestHelpers.GetSignedRequest method to search also into...

View Article

Commented Unassigned: SelectExpandWrapper can't be converted to IQueryable....

EntitySetController currently returns an IQueryable<T> for its Get() function. When supplying the $select query, it'll throw an ArgumentException stating that it is unable to convert the...

View Article


Edited Issue: HttpError should use case insensitive comparer [605]

The HttpError object should use a case insensitive comparer for determining key equality since the case of the dictionary keys cannot be guaranteed when sent over the wire.For example, all our JSON...

View Article

Created Unassigned: [WebApiOnOwin] Need MaxReceivedMessageSize and...

Currently in webapi self host scenario, we can set MaxReceivedMessageSize and ReceiveTimeout properties but we do not have a way to set it when using katana self host. It would be good to provide these...

View Article

Edited Unassigned: [WebApiOnOwin] Unable to upload large files. Need...

Currently in webapi self host scenario, we can set MaxReceivedMessageSize and ReceiveTimeout properties but we do not have a way to set it when using katana self host. It would be good to provide these...

View Article


Edited Unassigned: [WebApiOnOwin] Unable to upload large files in Katana self...

Currently in webapi self host scenario, we can set MaxReceivedMessageSize and ReceiveTimeout properties but we do not have a way to set it when using katana self host. It would be good to provide these...

View Article


Source code checked in, #1c7dc46b1afeaab550bc7c74ce9485bb5ee1e9be

Issue 1021: SingleResult<T> cannot be serialized by OData formatter.

View Article

Commented Unassigned: SelectExpandWrapper can't be converted to IQueryable....

EntitySetController currently returns an IQueryable<T> for its Get() function. When supplying the $select query, it'll throw an ArgumentException stating that it is unable to convert the...

View Article

New Post: $select in nightlies throwing EntityFramework stack overflow

I assume you are asking for application/xml and not using ODataFormatter. We only support JsonFormatter and ODataFormatter with $select and $expand right now. Getting XmlFormatter to work with $select...

View Article

Created Unassigned: Consider improving the experience for accessing...

Before the changes introduced by $select and $expand, defining custom odata links was reasonably straightforward using EntityInstanceContext.EntityInstance as in the following snippet.```eic =>{...

View Article


Commented Issue: SingleResult cannot be serialized by OData formatter [1021]

``` public SingleResult<Customer> GetCustomers(int id){ return new SingleResult<Customer>(_db.Customers.Where(c => c.ID == id));}```Requesting the URL ~/Customers(42) gives back a...

View Article

Edited Issue: SingleResult cannot be serialized by OData formatter [1021]

``` public SingleResult<Customer> GetCustomers(int id){ return new SingleResult<Customer>(_db.Customers.Where(c => c.ID == id));}```Requesting the URL ~/Customers(42) gives back a 406.

View Article


Edited Unassigned: [WebApiOnOwin] Need MaxReceivedMessageSize and...

Currently in webapi self host scenario, we can set MaxReceivedMessageSize and ReceiveTimeout properties but we do not have a way to set it when using katana self host. I filed a bug in Katana...

View Article

Commented Issue: Make APIController more testable [175]

It is currently difficult to unit test actions on ApiController. The primary source of this are non-virtual and non-settable properties. Their getters must be satisfied through convoluted mechanisms.I...

View Article


Edited Issue: Make APIController more testable [175]

It is currently difficult to unit test actions on ApiController. The primary source of this are non-virtual and non-settable properties. Their getters must be satisfied through convoluted mechanisms.I...

View Article

New Post: Why AppSettings?

I have been wondering this for ages, so here it goes... Why has ASP.NET MVC decided to go with AppSettings for settings instead of custom configuration sections as all the other MS products? I know in...

View Article

New Post: Why AppSettings?

Hi nvivo, The main reason why we haven't created a custom section for it is that MVC so far hasn't had a very big need for configuration settings in general. Most of the settings in MVC are generally...

View Article
Browsing all 7925 articles
Browse latest View live