Created Issue: ODataSerializerContext.ServiceOperationName is not a good name...
The real meaning of this is the 'ElementName' that should be used whenever outputting a wrapper.With this new interpretation code that looks at the last segment feels a lot safer, so we can probably...
View ArticleEdited Issue: Exceptions raised from IQueryable implementation are always...
I have constructed a Web API controller with an IQueryable action method as follows.public class ValuesController : ApiController{ [Queryable] IQueryable<int> GetValues() { Task<int>[]...
View ArticleCommented Issue: Exceptions raised from IQueryable implementation are always...
I have constructed a Web API controller with an IQueryable action method as follows.public class ValuesController : ApiController{ [Queryable] IQueryable<int> GetValues() { Task<int>[]...
View ArticleCommented Issue: Exceptions raised from IQueryable implementation are always...
I have constructed a Web API controller with an IQueryable action method as follows.public class ValuesController : ApiController{ [Queryable] IQueryable<int> GetValues() { Task<int>[]...
View ArticleCreated Issue: Hard to use derived queryableattribute with global...
I have discussed with Youssef and RaghuRam and agree that it's an advanced scenario and we have workaround for that. The issue is raised to see if we can improve that in the future.The problem:MVC...
View ArticleCreated Issue: Razor View Engine Compiling the Code as /debug+ /optimize- [543]
Nearly 2 years ago, I have a found/discussed an issue at here,http://forums.asp.net/p/1625220/4177037.aspxThe issue was that Razor view engine compile the code as "/debug+ /optimize-" and Webform view...
View ArticleCreated Issue: Invalid names and ids are generated when the model type is...
If the view model type is a collection, then the names generated for it (using NameFor, IdFor etc.) are incorrect (for example, it might be generated as "Project.Employees.[0].Name" - note the extra...
View ArticleCommented Issue: error with odata query [365]
hi, i just created a new project adding the daily build packages from myget.i created a web api controller, using entities created from reverse engineering a db using ef power tools.this it the code in...
View ArticleEdited Issue: Throw exception if a route is not found when building Action...
In this scenario, we have a route called "InboundAction" regiestered in the route collection, but the UrlHelper while generating a link doesn't find a match and returns null. In this case, we need to...
View ArticleEdited Issue: Expose the default logic of link generation to enable re-using...
I agree that its easy to create links ourselves, but its natural and easier to just fallback to the default logic too.Scenarios:a. I would like to build a 'Transient' action on Product called...
View ArticleCommented Issue: Expose the default logic of link generation to enable...
I agree that its easy to create links ourselves, but its natural and easier to just fallback to the default logic too.Scenarios:a. I would like to build a 'Transient' action on Product called...
View ArticleEdited Issue: Collection property in complex type should be non-nullable [533]
Related to: http://aspnetwebstack.codeplex.com/workitem/421As we are setting collection property as non-nullable, the collection property in complex type should be non-nullable as well.For model:...
View ArticleClosed Issue: DataServiceId is not in the response header to a PUT, POST,...
As specified in the spec: http://www.odata.org/media/30002/OData.html#thedataserviceidheaderA response to a PUT, POST, MERGE, or PATCH request that returns 404 No Content MUST include a DataServiceId...
View ArticleCreated Issue: Ensure the CA1804 FxCop rule runs on the runtime [548]
FxCop violations are being ignored by build.cmd. We need to figure out why and resolve the issue.
View ArticleEdited Issue: Consider supporting binding ODataQueryOptions in actions that...
- public HttpResponseMessage Get(ODataQueryOptions)- problem is that we don’t know the T when we try to do model binding- one solutions is - ODataQueryOptions<T>
View ArticleCommented Issue: Consider supporting binding ODataQueryOptions in actions...
- public HttpResponseMessage Get(ODataQueryOptions)- problem is that we don’t know the T when we try to do model binding- one solutions is - ODataQueryOptions<T>Comments:...
View ArticleCreated Issue: Querystring is overriding values provided in view. [549]
So I have a controller with an action that takes a string. public class HomeController : Controller { public ActionResult Index(string date) { return View(); } }
View ArticleEdited Issue: Querystring is overriding values provided in view. [549]
I have a controller that takes a string. In my view I hardcode the value of the input field, so it should always be the same.public class HomeController : Controller{ public ActionResult Index(string...
View ArticleEdited Issue: Querystring is overriding values provided in view. [549]
I have a controller that takes a string. In my view I hardcode the value of the input field, so it should always be the same.public class HomeController : Controller{ public ActionResult Index(string...
View ArticleCreated Issue: key attribute doesn't make property as non-nullable [550]
Key attribute doesn't work for string (reference type) property.Example----- private static IEdmModel GetEdmModel() { ODataModelBuilder modelBuilder = new ODataConventionModelBuilder();...
View Article