Is HQL required for Get, Update, Insert and Delete operations in NHibernate?

Get / update / insert / remove all inline functions that work out of the box without having to write HQL?

I am assuming it is getting this information from mapping XML files?

0


a source to share


1 answer


Yes. These are primitive operations provided by ISession. HQL is only needed for complex queries.



+3


a source







All Articles