About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (20)
- Development (208)
- Security (17)
- Test (32)
- Tooling (166)
- Uncategorized (168)
Most used tags
Tag Archives: mvc
Speed up ASP.NET MVC debugging
Whenever I was debugging my ASP.NET MVC application the wait times for every page is about 8 seconds. This was not happening after deployment to a webserver (thank god!) Today I discovered that disabling the browserlink will speed things up … Continue reading
Syncfusion grid datetime format fixed
We use the data grid from Syncfusion and it is awesome! It serialises the data on the server and puts it in the page as json. Now more postbacks to get extra data or for sorting / filtering / other … Continue reading
Back to T4
We generate our web api. This saves time and makes access uniform. But there are some rules we have to obey to get this working. With Entity Framework Model First (edmx) we generate our data layer. By customising the template we … Continue reading
Week roundup
Last week recap and links: Creating Help Pages for ASP.NET Web API, this is awesome, using MVC for documenting itself Using Stubs and Shims to Test with Microsoft Fakes, just before the conclusion he shows the fakes.xml syntax, didn’t knew … Continue reading
Posted in Uncategorized
Tagged asp.net, azure, fakes, mvc, roundup, web performance, webapi
Leave a comment
ASP.NET MVC WebApi and Xml serialization
In our project we use XSD to describe messages over project boundaries. This way we can all develop in our own speed. The XSD describes XML with attributes and elements. ASP.NET MVC WebApi supports this, but not out-of-the-box. Default the … Continue reading