Edited Feature: Consider improving the experience for accessing properties in...
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 ArticleEdited Issue: Error when a controller derives from another having a default...
For the following controller setup, when I am launching the application, I am seeing an error related to same route name ("EmployeesApi") being added to the collection. __Reason__: We currently are...
View ArticleCommented Issue: Error when a controller derives from another having a...
For the following controller setup, when I am launching the application, I am seeing an error related to same route name ("EmployeesApi") being added to the collection. __Reason__: We currently are...
View ArticleEdited Issue: HttpRequestContext is not available when using HttpServer [1254]
If you are using HttpServer (not selfhost or webhost), Request.GetRequestContext() always returns null. We use HttpServer for quick in-memory testing. It would be useful to maintain same behavior for...
View ArticleCommented Issue: HttpRequestContext is not available when using HttpServer...
If you are using HttpServer (not selfhost or webhost), Request.GetRequestContext() always returns null. We use HttpServer for quick in-memory testing. It would be useful to maintain same behavior for...
View ArticleClosed Issue: Error when a controller derives from another having a default...
For the following controller setup, when I am launching the application, I am seeing an error related to same route name ("EmployeesApi") being added to the collection. __Reason__: We currently are...
View ArticleClosed Issue: ApiExplorer not returning descriptions in certain scenarios [1213]
__Scenario__:User is trying to use UriPathExtensionMappings along with attribute routing. User would like to see the the appropriate information on the HelpPage(which uses ApiExplorer behind the...
View ArticleClosed Issue: ApiExplorer not providing descriptions for route parameters not...
For the following ValuesController and default Web API route, the help page is getting generated as expected.public class ValuesController : ApiController{// GET api/values public...
View ArticleClosed Issue: SingleResult doesn't work [1217]
``` public class CustomersController : ODataController{[Queryable] public SingleResult<Customer> Get([FromODataUri]int key){ return System.Web.Http.SingleResult.Create(new[] { new Customer { ID =...
View ArticleEdited Feature: Add Redirect() and RedirectToRoute() results [1263]
MVC has them. It's is now needed for a SPA RTM bug fix as well.
View ArticleEdited Feature: Add Redirect() and RedirectToRoute() results [1263]
MVC has them. It's is now needed for a SPA RTM bug fix as well.
View ArticleCommented Feature: Add Redirect() and RedirectToRoute() results [1263]
MVC has them. It's is now needed for a SPA RTM bug fix as well.Comments: commit 8068e3620e27fb7bb94143fd83c1eee92593c3f6 commit 15f05cc4edfdc5bb8e276fa87542077da98f2dd5
View ArticleCreated Unassigned: MVC routing fails when explicit verb attribute is used on...
__NOTE__: this is a regression after yesterday's changes to MVC attribute routing which made some changes affecting conventional routing too.Following works:``` public class HomeController :...
View ArticleEdited Feature: Add Redirect() and RedirectToRoute() results [1263]
MVC has them. It's is now needed for a SPA RTM bug fix as well.
View ArticleClosed Issue: attribute routing doesn't always resolve overloads [1199]
Attribute routing doesn't work well with action overload resolution (ie, the action selector), particularly when there are multiple actions with structurally equivalent routes that have different route...
View ArticleCreated Unassigned: 1. Fix the “>” in the Web API OWIN self-host package [1266]
There’s a “>” at the start of the description of the Web API OWIN Self Host package. This is what’s in the nuspec:<summary>>This package allows you to host ASP.NET Web API within your...
View ArticleCreated Unassigned: 2. Make the description better in the WCF self-host...
Users could get confused with 2 packages: "Microsoft ASP.NET Web API Owin Self Host" and "Microsoft ASP.NET Web API Self Host"?.When should I pick which one package vs another. We should add better...
View ArticleEdited Unassigned: Make the description better in the WCF self-host package...
Users could get confused with 2 packages: "Microsoft ASP.NET Web API Owin Self Host" and "Microsoft ASP.NET Web API Self Host"?.When should I pick which one package vs another. We should add better...
View ArticleEdited Unassigned: Fix the “>” in the Web API OWIN self-host package [1266]
There’s a “>” at the start of the description of the Web API OWIN Self Host package. This is what’s in the nuspec:<summary>>This package allows you to host ASP.NET Web API within your own...
View ArticleEdited Issue: Incorrect action is being matched as explicit route order is...
__Scenario__: User has a CountriesController. He would like retrieve a country information based on id or name. __Setup of Controller__:Here since logically the route templates are the same for an...
View Article