You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before upgrade to NHibernate 5.2.4 i could create a criteria query as following in NHibernate 5.1.1
var list = _session.CreateCriteria(nameof(Setting))
.Add(Restrictions.Eq(nameof(_settingColumnName.Key), key))
.List<Hashtable>();
But i faced the exeption when upgrade to NHibernate 5.2.4 System.ArgumentException: The value "NHibernate.Util.DynamicComponent" is not of type "System.Collections.Hashtable" and cannot be used in this generic collection. Parameter name: value
What is wrong thing here? Please give me a help
Regards,