Consume RSS

You are here: Demonstrations » RSS

This demontration pulls live information from Richard Wilde`s technical blog. This information is then reformatted and shown to the user.

View live blog

Using DateAdd with NHibernate Linq

The goal is to do something like this using NHibernate and Linq:-Session.Query.Where(x => x.Start.AddHours(3) > x.Finish );If you run this code you will get the following error message:-[NotSupportedException: System.DateTime AddHours(Double)]So ... » more

Tags: NHibernate Linq

Published on: 16-May-2012

NHibernate 3.3 and medium trust

With the new release of NHibernate 3.3 it seems from my early testing, that the Medium Trust issues have now disappeared and its good to see NHibernate 3.3 works in Medium Trust environments. I need to play with the NH Linq provider more to see what ... » more

Tags: NHibernate

Published on: 08-May-2012

Using filters for unmapped columns in NHibernate

Using filters in NHibernate is a little known feature to new users. Filters can be applied in quite few places. This blog shows us how we can apply a filter onto the class definition:-more

Tags: NHibernate

Published on: 27-Apr-2012

Use a button instead of an anchor tag

When using JQuery and href's we sometimes see the following:-My Linkor even worse:-Click Meand some jQuery which executes some code, BUT does not redirect the user.