I have a scenario that I have to check the table id list with the given string list and get all the relevant data.I know how to retrieve the data for one equal criteria.
var criteria = sm.Session.CreateCriteria(GetRegisteredType<Data>());
criteria = criteria.Add(Expression.Eq("Id", "9999"));
I have string list that I need to check with Id column. Can anyone help with me this?