Author Archives: erictummers

Unknown's avatar

About erictummers

Working in a DevOps team is the best thing that happened to me. I like challenges and sharing the solutions with others. On my blog I’ll mostly post about my work, but expect an occasional home project, productivity tip and tooling review.

Limit vs2015 IntelliTrace

Debugging my solution was a pain. Running from visual studio debug the application was slow, visual studio output window was cluttered and I was getting frustrated. When the application was deployed it performed fast and snappy. ❓ Looking in the options … Continue reading

Posted in Development | Tagged , | Leave a comment

SDN event December 2016

The SDN – Software Development Network – is a special interest group for dutch developers. Four times a year they organise an event where people present and talk about their passion. As a member of the SDN you are aware … Continue reading

Posted in Conference | Tagged , , , , | 1 Comment

Case sensitive dacpac for coding standards

In our project we have coding standards for SQL objects. But when a code review made us update casing we noticed the dacpac did not contain the changes after a schema compare. What happend? Seems that our sql server databases … Continue reading

Posted in Development | Tagged , , , , | 2 Comments

Start-SqlJobAndWait

We have some SqlJobs that we run in our regression tests. To automate this we need something that can start the job and wait for it to finish. Based on this post we know we need to poll the sysjobhistory … Continue reading

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

Entity Framework Fake ObjectContext Realization Tool

With Effort (Entity Framework Fake ObjectContext Realization Tool) I can create integration tests for the datalayer in my project. The tool has an Entity Framework provider that works on an in-memory database. This means I can call SaveChanges without mocking it or having a dependency on a … Continue reading

Posted in Development | Tagged , , | Leave a comment