Edited 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 ArticleUpdated Wiki: Contributing
Ways to Contribute If you would like to contribute, consider these options: Submit a bug report (for a guide on submitting good bug reports, read Painless Bug Tracking). Verify fixes for bugs. Submit...
View ArticleUpdated Wiki: Contributing
Ways to Contribute If you would like to contribute, consider these options: Submit a bug report (for a guide on submitting good bug reports, read Painless Bug Tracking). Verify fixes for bugs. Submit...
View ArticleUpdated Wiki: Contributing
Ways to Contribute If you would like to contribute, consider these options: Submit a bug report (for a guide on submitting good bug reports, read Painless Bug Tracking). Verify fixes for bugs. Submit...
View ArticleUpdated Wiki: Contributing
Ways to Contribute If you would like to contribute, consider these options: Submit a bug report (for a guide on submitting good bug reports, read Painless Bug Tracking). Verify fixes for bugs. Submit...
View ArticleUpdated Wiki: Contributing
Ways to Contribute If you would like to contribute, consider these options: Submit a bug report (for a guide on submitting good bug reports, read Painless Bug Tracking). Verify fixes for bugs. Submit...
View ArticleSource code checked in, #31861dd7fa3f
Only disable MultipartWriteDelegatingStreamTests on .NET 4.0 (they work on .NET 4.5).
View ArticleUpdated Wiki: Contributing
Ways to Contribute If you would like to contribute, consider these options: Submit a bug report (for a guide on submitting good bug reports, read Painless Bug Tracking). Verify fixes for bugs. Submit...
View ArticleUpdated Wiki: Contributing
Ways to Contribute If you would like to contribute, consider these options: Submit a bug report (for a guide on submitting good bug reports, read Painless Bug Tracking). Verify fixes for bugs. Submit...
View ArticleUpdated Wiki: CodingConventions
Coding Guidelines The most important rule when contributing to a source code base – any source code, not just an open source project – is to keep the style consistent. To enable that consistency, our...
View ArticleUpdated Wiki: CodingConventions
Coding Guidelines The most important rule when contributing to a source code base – any source code, not just an open source project – is to keep the style consistent. To enable that consistency, our...
View ArticleNew Post: How can I find the asp.net mvc 4.0 source code matching my 4.0...
BastienPascal wrote: I would like to debug the asp.net mvc 4.0 source code to understand more and debug some exceptions I can not explain. My MVC 4.0 project registers the System.Web.Mvc assembly...
View ArticleNew Post: How can I find the asp.net mvc 4.0 source code matching my 4.0...
Hello marcind, I have configured like written here: http://www.symbolsource.org/Public/Home/VisualStudio now I want to debug my return PartialView(); and say: "Step into" onto the code, but it does...
View ArticleNew Post: Easiest and most elegant way to inject custom...
It would have been easier had IActionResultConverter been replaceable as a Service....but currently its not. Following is a way I have tried and this seems to work and its similar to what you mentioned...
View ArticleCommented 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 ArticleSource code checked in, #41852a3a8fa8
Issue 459: [DataMember(IsRequired=true)] doesn't make property as required in ODataConventionModelBuilder 1) Added support for IsRequired property on DataMember. 2) Also, fixing the issue where the...
View ArticleEdited Issue: Can't set navigation property as required when using...
For example, I want to set one of the navigation property to be required: public class Todo { public int Id { get; set; } public Person CreatedBy { get; set; } } public class Person { public int...
View ArticleCommented Issue: Can't set navigation property as required when using...
For example, I want to set one of the navigation property to be required: public class Todo { public int Id { get; set; } public Person CreatedBy { get; set; } } public class Person { public int...
View ArticleCommented Issue: Error applying Required binding when using conventional...
I am using the ODataService sample. In the following scenario, I would like to have a Required binding from Products entity set to ProductFamilies.static IEdmModel GetImplicitEdmModel() {...
View ArticleEdited Issue: [DataMember(IsRequired=true)] doesn't make property as required...
Since we already support [Required], we should support this as well.For example: [DataContract] public class Vehicle { [Key] [DataMember] public int Model { get; set; } [Key] [DataMember] public string...
View Article