Skip to content

Instantly share code, notes, and snippets.

@mxmissile
Last active May 11, 2017 20:57
Show Gist options
  • Save mxmissile/b8c630046afba43c55365dea32e6c7e7 to your computer and use it in GitHub Desktop.
Save mxmissile/b8c630046afba43c55365dea32e6c7e7 to your computer and use it in GitHub Desktop.
var d = new Dictionary<string, object>();
d.Add("RefId", 1);
var types = new List<string>();
types.Add("fruit");
types.Add("veg");
types.Add("fung");
var foodList = session.QueryOver<Food>()
.Where(NHibernate.Criterion.Restrictions.AllEq(d) && NHibernate.Criterion.Restrictions.In("Type", types));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment