Edited Issue: $metadata requests should throw an exception when there is no...
Right now we just get a 406 with no error, because there are no formatters registered
View ArticleEdited Issue: Make primitive parameters non-nullable by default when they are...
In the following action configuration, 'DateTime' parameter needs to be shown as Nullable="False" in the metadata document.ActionConfiguration:var product = products.EntityType;var extendSupportAction...
View ArticleCreated Issue: Disable base type ID check in queryable mode [569]
If user has model type like following:public class BaseEntity{public string Name { get; set;}}public class Product : BaseEntity{public int ProductID { get; set; }}You can't query on Product as it...
View ArticleCreated Issue: Support changing namespace and name of entity container [570]
http://stackoverflow.com/questions/12971174/asp-net-web-api-wrong-odata-entitycontainer-schema-namespaceWe may support that as user may want to control the generated client code.
View ArticleClosed Issue: Support changing namespace and name of entity container [570]
http://stackoverflow.com/questions/12971174/asp-net-web-api-wrong-odata-entitycontainer-schema-namespaceWe may support that as user may want to control the generated client code.Comments: Just found...
View ArticleCreated Issue: Allow FileResult that opens files with FileShare.ReadWrite [571]
I want to be able to stream application log files to the browser - these files are open for writing, so I need to open them with `FileShare.ReadWrite`. I don't like the idea of opening the file in the...
View ArticleCreated Issue: AuthorizeFilter dysfunction under async implementation [572]
Implement AuthorizeFilter as following: public class TheAuthrizeAttribute : AuthorizationFilterAttribute { public async override void OnAuthorization(System.Web.Http.Controllers.HttpActionContext...
View ArticleCommented Issue: AuthorizeFilter dysfunction under async implementation [572]
Implement AuthorizeFilter as following: public class TheAuthrizeAttribute : AuthorizationFilterAttribute { public async override void OnAuthorization(System.Web.Http.Controllers.HttpActionContext...
View ArticleCreated Issue: MVC4 routing issue with web api [573]
In VS 12 professional and express: When trying to launch MVC4 I get: Could not load type 'System.Web.Http.RouteParameter' from assembly 'System.Web.Http, Version=4.0.0.0, Culture=neutral,...
View ArticleCommented Issue: AuthorizeFilter dysfunction under async implementation [572]
Implement AuthorizeFilter as following: public class TheAuthrizeAttribute : AuthorizationFilterAttribute { public async override void OnAuthorization(System.Web.Http.Controllers.HttpActionContext...
View ArticleCommented Issue: AuthorizeFilter dysfunction under async implementation [572]
Implement AuthorizeFilter as following: public class TheAuthrizeAttribute : AuthorizationFilterAttribute { public async override void OnAuthorization(System.Web.Http.Controllers.HttpActionContext...
View ArticleCommented Issue: Injecting custom IActionResultConverter implementations...
@kichalla and I have discussed this issue also on http://aspnetwebstack.codeplex.com/discussions/399311. Today, you need to jump a lot of hoops to provide a custom IActionResultConverter implementation...
View ArticleCommented Issue: Code Analysis Fails with DotNetOpenAuth.AspNet 4.1.0.0 [443]
I have a web project with Microsoft.AspNet.WebPages.OAuth 2.0.20710.0 and the project includes DotNetOpenAuth.AspNet, Version=4.1.0.0 and it has all the proper web.config runtime settings however when...
View ArticleCommented Issue: MVC4 routing issue with web api [573]
In VS 12 professional and express: When trying to launch MVC4 I get: Could not load type 'System.Web.Http.RouteParameter' from assembly 'System.Web.Http, Version=4.0.0.0, Culture=neutral,...
View ArticleEdited Issue: Disable base type ID check in queryable mode [569]
If user has model type like following:public class BaseEntity{public string Name { get; set;}}public class Product : BaseEntity{public int ProductID { get; set; }}You can't query on Product as it...
View ArticleCommented Issue: Disable base type ID check in queryable mode [569]
If user has model type like following:public class BaseEntity{public string Name { get; set;}}public class Product : BaseEntity{public int ProductID { get; set; }}You can't query on Product as it...
View ArticleCreated Issue: Provide a way to replace the default HttpControllerDispatcher...
Assume that I have the following custom HttpControllerDispatcher implementation: public class MyCustomDispatcher : HttpControllerDispatcher { protected override Task<HttpResponseMessage>...
View ArticleEdited Issue: Provide a way to replace the default HttpControllerDispatcher...
Assume that I have the following custom HttpControllerDispatcher implementation: public class MyCustomDispatcher : HttpControllerDispatcher { protected override Task<HttpResponseMessage>...
View ArticleCreated Issue: Custom htmlAttributes rendered incorrectly by WebGrid [575]
data_xxx attributes should be rendered as data-xxx, like other MVC Html helpers. See this StackOverflow question -...
View ArticleEdited Issue: $metadata requests should throw an exception when there is no...
Right now we just get a 406 with no error, because there are no formatters registered
View Article