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

Posted in Development | Tagged , , , | Leave a comment

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

Posted in Development | Tagged , , | Leave a comment

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

Posted in Development, Tooling | Tagged , , | Leave a comment

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 , , , , , , | 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

Posted in Development | Tagged , , , , , | Leave a comment