8 Mar
2009

FubuMVC From Scratch – Part 3 (Adding View to project)

Previous Posts in Series: FubuMVC From Scratch Part 1 – Basic project structure setup FubuMVC From Scratch Part 2 – FubuMVC configuration and Controller setup Preparing for our View Another founding principal of FubuMVC is to have little to no logic in the View, no logic is preferred. So when we add .aspx pages, we […]

Read More
8 Mar
2009

Elegant Code Joins the Lounge Network

Category:General PostTag: :

The crew here at Elegant Code has discussed advertising for a long time now and we have largely dismissed the idea. One big reason for this is a desire to have a degree of confidence that the products advertised are neither intrusive or incompetent. Google Ad-Sense, as an example, was never a real option. Why […]

Read More
7 Mar
2009

What I Really, Really, Really Like About Using Fluent NHibernate

Reusable Mappings Something that slightly bothered me with the XML mappings of NHibernate, is the fact that some things need to be configured over and over again. Behold the following two mapping files: Catalog: <class name=”Catalog” table=”`Catalog`” optimistic-lock=”version”> <id name=”Id” column=”Id” type=”Guid”> <generator class=”guid.comb” /> </id> <version column=”Version” name=”Version” /> <property name=”Name” length=”100″ type=”String”> <column […]

Read More