Log in | Jump |

jhollingworth

a blog about my life (twitter.com/jhollingworth)

Things added in March, 2008

(preview-image)

Subsonic like NHibernate Query Generator button in Visual Studio

Posted on March 28th by jhollingworth. 3
One thing I love about SubSonic, in fact the reason i switched, was how awsome the querying is. I don't know why but something like new UserCollection().Where("UserID", id).Where("Password", password) just ...

Monorail: Get client's browser

Posted on March 2nd by jhollingworth.
For future reference, to get the clients browser:     $Context.UnderlyingContext.Request.Browser.Browser This is infact accessing the HttpRequest.Browser property so you can then get all the usual info like browser version:     $Context.UnderlyingContext.Request.Browser.MajorVersion Hope this ...