We recently had a new member join our team and so we started setting up their development machine and project. Once we had installed Visual studio and .Net 4, we...
We have been automating the testing of our application using Selenium and TeamCity to automate the testing of an application we are developing. One of the challenges we have come...
We have had an issue with where the application that has a fair amount of JavaScript. When one of the testers was testing in IE 9 the application would just...
This is a simple solution to using the IN statement in fluent NHibernate: _session.QueryOver<Model>() .WhereRestrictionOn(x => x.Id) .IsIn(intList) .List<Model>(); In the example above, I am trying to get all models...
This is the second in a series on getting back to basics, aimed at those who need help with some fundamentals in software development. This post shows how to create,...