Mladen Prajdić Blog

Blog about stuff and things and stuff. Mostly about SQL server and .Net

.Net Application Architecture

I've come accross this these articles which i think are a must read before starting to design any kind of a serious application Designing and building a robust data access layer Managing SQL exceptions in . Read more →

Sorter class v2 - A generic comparer/sorter class

In my previous post i showed how a generic comparer class in .net C# 2.0 can be made with the use of reflection. In my constant search to optimize code and make it better i've stumbled upon this article that explaines how IL code generation can be use in this situation. Read more →

Sorter - a kind of ISortable implementation

I often wondered why is there no ISortable interface of somekind in .Net. I recently needed to sort items in the context menu in alphabetical order. Sorting them was the begining of a journey which produced this class. Read more →

Great DataSet visualizer

Visual studio's DataSet visualizer is ok but it's not that great :)) This one is excellent and if you do a lot of db development (which you do if you're reading blogs on SQLTeam :)) you need this. Read more →

WebDAV

I've posted an article about WebDAV protocol and my use of it for accessing MS Exchange store. WebDAV is based on HTTP 1.1 and is based on sending XML requests to find, set, remove and search for item properties. Read more →

WebDAV How, What and Problems…

What is WebDAV? WebDAV stands for "Web-based Distributed Authoring and Versioning". It's a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers. Read more →

C# 2.0 ?? Operator

I saw this operator in use today in a code example. I must say when I figured what it does my geek side went "YES!!!!". It resembles an old "if" abbreviation: (condition ? Read more →

Nunit asp testing

Well we decided we should do some unit testing on our asp.net project. We used NUnit.Asp. i must say the thing works realy great. the whole thing is based on xml document model of the page. Read more →