ahmadadnan

Stories submitted by ahmadadnan

The Only Pattern for Data Access is There Are No Patterns for Data Acc(theahmadblog.blogspot.com)

submitted by ahmadadnanahmadadnan(30) 2 years, 11 months ago

Over the years of software development, one thing that has eluded most developers is Data Access. Yes, I mean writing code that accesses a database from your application. It is an age old problem since the days when data storage and computing were invented. We would have thought that by now we would have been able to come up with a clean universal pattern for data access such as the M-V-C pattern for User Interfaces or the Singleton pattern or the Factory pattern. read more...

add a comment |category: |Views: 14

tags: another

Var Wars – Abuse of the CSharp var(theahmadblog.blogspot.com)

submitted by ahmadadnanahmadadnan(30) 2 years, 11 months ago

CSharp 3.0 introduced the var keyword for declaring variables without having to explicitly specify the type. This was done for using anonymous types returned from LINQ queries. Now, I am seeing many developers use it all over their code and think its a good thing. read more...

add a comment |category: |Views: 104

tags: another