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
{{ message }}
This repository has been archived by the owner on Aug 2, 2019. It is now read-only.
In the CollectionMethods unit test class, there are tests such as:
RelatedParents/any(x:x/Int32 lt 5)
Where 'Int32' is a property of the class who's collection is being iterated over. However, in my code I need to iterate over a collection of basic types (strings, ints). When I attempt to do this, i.e.:
RelatedBasicTypeColl/any(x:x lt 5)
I get: An exception of type 'NHibernate.QueryException' occurred in NHibernate.dll but was not handled in user code. Additional information: Could not find property t2.
Is this functionality that's expected to work?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In the CollectionMethods unit test class, there are tests such as:
RelatedParents/any(x:x/Int32 lt 5)
Where 'Int32' is a property of the class who's collection is being iterated over. However, in my code I need to iterate over a collection of basic types (strings, ints). When I attempt to do this, i.e.:
RelatedBasicTypeColl/any(x:x lt 5)
I get:
An exception of type 'NHibernate.QueryException' occurred in NHibernate.dll but was not handled in user code. Additional information: Could not find property t2.
Is this functionality that's expected to work?
The text was updated successfully, but these errors were encountered: