-
Hello, Thank you! |
Beta Was this translation helpful? Give feedback.
Answered by
hazzik
Sep 17, 2020
Replies: 2 comments
-
Hello! To execute database queries you use var queryable = session.Query<MyObject>();
var obj = queryable.FirstOrDefaultAsync(); session - More examples: https://github.com/SimplifyNet/Simplify/blob/master/src/Simplify.FluentNHibernate/SessionExtensions.cs |
Beta Was this translation helpful? Give feedback.
0 replies
-
Fluent NHibernate is a mapping tool and query side is handled by NHibernate. NHibernate does support async. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hazzik
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fluent NHibernate is a mapping tool and query side is handled by NHibernate. NHibernate does support async.