About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (20)
- Development (206)
- Security (17)
- Test (32)
- Tooling (166)
- Uncategorized (166)
Most used tags
Tag Archives: asp.net
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
Performance tuning EF, ASP.NET and loadtest
We are developing webservices for accessing data in SQL Server. The performance requirement was not met until we started to tune our solution. TLDR: use table in stead of view EF First we added the AsNoTracking() extension from EntityFramework to … Continue reading
Posted in Development
Tagged asp.net, async, EF, Entity Framework, Loadtest, sqlserver, Web API
Leave a comment
Week roundup
Last week recap and links: Entity Framework Unit Testing Tool, create a DbContext with an in-memory database Installing ASP.NET 5 On Linux, this is possible now Logitech Performance MX Mouse, I’m looking for a new mouse anyone experience with this … Continue reading
Week roundup
Last week recap and links: ASP.NET Web API documenten using Swagger MVVM: Rename TreeView nodes Trello integrates with Hangouts and Appear.in Image courtesy of kanate / FreeDigitalPhotos.net What are your best reads this week? Leave them in the comments below.
MEF configuration and parallel transactions
While testing my ASP.NET Web API solution single requests are fine, but multiple requests give HTTP500 after a long wait. A MEF configuration setting caused parallel transactions and the database provider was unable to handle them. Setup ASP.NET Web API … Continue reading