Developing Web applications using AngularJS and Web API can be quite amuzing. You can pick this architecture in case you have in mind a web application with limitted page refreshes or post backs to the server while each application’s View… Read More ›
Best practices
Web API powerful Custom Model Validation with FluentValidation
Since DataAnnotations were introduced, developers found an easy way for setting up their database (especially those who use Code First development) while adding at the same time validation logic to their domain objects. In the Web API side, when an… Read More ›
Secure WCF Services with custom encrypted tokens
Windows Communication Foundation framework comes with a lot of options out of the box, concerning the security logic you will apply to your services. Different bindings can be used for certain kind and levels of security. Even the BasicHttpBinding binding… Read More ›
Insert millions of records in SQL Server table at once
In this post we will see how to insert a really large amount of records in a SQL Server Table at once. I decided to write about this cause recently I found myself having difficulties while trying to deploy a… Read More ›
Asynchronous programming using Tasks
Asynchronous programming model allows you to run and complete several tasks in a parallel way. Using this model can make your applications more responsive (non-blocking) but make no mistake, it’s a tricky road to follow. There are few different models… Read More ›