It was a lot fun presenting at the Boston code camp 21. The slide deck with all the links is below:…
Yogiraj Aradhye
A collection of 42 posts
Git and Development Workflows presentation
It was a lot of fun presenting at the code camp Hartford today. My deck for the talk is below:…
Micro-ORM Code Camp 6 Presentation Links
Presentation from Code Camp 6 [https://github.com/YogirajA/Micro-ORM-Presentation/tree/master/Presentation] (run index.html from the presentation folder) MicroStackOverflow demo project from the presentation [https://github.com/YogirajA/MicroStackOverflow] StackExchange public data dump [http://www.clearbits.net/creators/…
Micro-ORM, Why should you care?
Before we look at anything, we must try to understand what an ORM is. It stands for object relational mapper. It tries to solve a very common problem of impedance mismatch between the set based SQL world and the loops…
Auditing with Entity Framework and repository pattern
There is always a need to keep track of changes in the production database. We may want to create a log or maintain a history of these changes. There are multiple ways of doing this. One way is to have…