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 ArticleEdited 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 ArticleEdited 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 ArticleEdited 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 ArticleCommented 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 ArticleEdited 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 ArticleCreated 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 ArticleEdited 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 ArticleEdited 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 ArticleSource code checked in, #1c7dc46b1afeaab550bc7c74ce9485bb5ee1e9be
Issue 1021: SingleResult<T> cannot be serialized by OData formatter.
View ArticleCommented 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 ArticleNew 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 ArticleCreated 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 ArticleCommented 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 ArticleEdited 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 ArticleEdited 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 ArticleCommented 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 ArticleEdited 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 ArticleNew 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 ArticleNew 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