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,...
I have come across this issue a number of times when an unknown process is using the database when I am trying to restore it. I solved this by using...