david

Stories submitted by david

An introduction to the SOLID principles of OO design(davesquared.blogspot.com)

submitted by daviddavid(405) 3 years ago

I would be very hard pressed to go passed Robert "Uncle Bob" Martin's SOLID principles as the single most useful tool for helping me with OO design. I thought I'd post my interpretation of the principles as a refresher for myself, and as an introduction for anyone trying the learn the terminology. read more...

add a comment |category: |Views: 29

tags: another

Object Oriented Design Principles(noctovis.net)

submitted by daviddavid(405) 3 years ago

Quick summary of SOLID, DRY, YAGNI and other useful OO principles. read more...

1 comment |category: |Views: 635

tags: another

NHibernate mappings using xml, attributes, and Fluent NHibernate(davesquared.blogspot.com)

submitted by daviddavid(405) 3 years, 5 months ago

A quick comparison of 3 ways of configuring NHibernate mappings: using XML files, NHibernate Mapping Attributes, and Fluent NHibernate. read more...

add a comment |category: |Views: 66

tags: another

Configuration changes in NHibernate 2.0(davesquared.blogspot.com)

submitted by daviddavid(405) 3 years, 5 months ago

A quick summary of the web/app.config changes required when moving from NHibernate 1.2 to the newly released 2.0. read more...

add a comment |category: |Views: 59

tags: another

Test Doubles: When To (Not) Use Them(davybrion.com)

submitted by daviddavid(405) 3 years, 5 months ago

Provides some guidelines on how to answer the question "Do I need to mock this object for this test?". read more...

add a comment |category: |Views: 4

tags: another

Using DataLoadOptions with LinqToSql(elsharpo.blogspot.com)

submitted by daviddavid(405) 3 years, 10 months ago

By default LINQTo SQL uses lazy loading. This post looks at using the DataLoadOptions class to get more control over the fetch process, including immediate loading using LoadWith() and filtering data using AssociateWith(). read more...

add a comment |category: |Views: 50

tags: another

Playing around with Silverlight 2.0 Beta 1(elsharpo.blogspot.com)

submitted by daviddavid(405) 3 years, 11 months ago

Detailed post on getting started with Silverlight, using the example of implementing auto-complete behaviour in Silverlight 2.0 Beta 1 using WCF. read more...

add a comment |category: |Views: 0

tags: another

Getting to grips with ReSharper(davesquared.blogspot.com)

submitted by daviddavid(405) 3 years, 11 months ago

I've written a quick overview of some of my favourite ReSharper 3.x (R#) features, with the aim of helping newcomers get started. I'm a big fan of R#, so it is also a bit of an unsolicited, unaffiliated and unpaid advertisement for R# :-). read more...

add a comment |category: |Views: 2

tags: another

The Importance of Reversibility(codebetter.com)

submitted by daviddavid(405) 4 years ago

Jeremy Miller on reversibility, and why it is important for developing good software. Part of his "First Causes" series on the principles behind software development. read more...

add a comment |category: |Views: 1

tags: another

What's Ailing ASP.NET Web Forms(west-wind.com)

submitted by daviddavid(405) 4 years, 2 months ago

Rick Strahl summarises the disadvantages of the current ASP.NET WebForms model, and how the new ASP.NET MVC framework might address some of these issues. read more...

add a comment |category: |Views: 7

tags: another