Autofac – Advanced

Recently we’ve been talking about Dependency Injection. Currently you should know how to use Autofac. Today we’ll learn about things that you may find useful in one of your project. Modules As you may know in big project you’ll have lots of services to inject. That will leave you with multiple lines of code that…

Read More

Client input validation

Previously we’ve been talking about DTO, mostly in WebAPI controllers, but it can be used everywhere. Today last of basic topics that every developer should know about, input validation. I’m not going to try to convince you that validation is important in places where external client will put his data. It should be obvious. What’s…

Read More

AutoMapper and DTO

There are times developer need to implement something boring to make application easier to maintain. Fortunately there are millions of people that have the same problem and already developed solution. One of the worst thing to do is mapping one object to another, but it’s not a problem because we have AutoMapper. Additionally we’ll talk…

Read More

Dependency Injection

We’re not going to talk about whole SOLID extensively, maybe in future when there will be good time for it like this, but it’s sin to touch Dependency Injection without saying anything about 5th SOLID principle, Dependency Inversion, mind different name. Dependency Inversion Main point of Dependency Inversion is to decouple your code. It means…

Read More