-
Hello, Thank you! |
Beta Was this translation helpful? Give feedback.
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.
-
Fluent NHibernate is a mapping tool and query side is handled by NHibernate. NHibernate does support async. |
Beta Was this translation helpful? Give feedback.
Fluent NHibernate is a mapping tool and query side is handled by NHibernate. NHibernate does support async.