NHibernate Criteria Interface : Criteria is a simplified API for retrieving entities by composing NHibernate.
Assuming the following scenario: class Project{ public Job Job; } class Job{ public Name; } Assuming I want to use the Criteria …
performance nhibernate criteria icriteriaI am having some difficultly writing an hql query that will search a table for all the rows where certain …
nhibernate hql icriteriaCan I use a Criteria to execute a t-sql command to select the max value for a column in a …
nhibernate tsql icriteriaI have an "Estate" entity, and this entity has a collection "EstateFeatures"(type:EstateFeature) and EstateFeature has a property "MyFeatureValue". …
c# .net nhibernate criteria icriteriaI have a Person entity belongs to a person has a Country, I want to select all the distinct countries …
nhibernate criteria icriteriaWhat are the performance differences between the hql and criteriaApi and QueryOver? Are there any situations where one is faster …
performance nhibernate criteria icriteriaI have a legacy database that I am mapping using NHibernate. The objects of concern are an Account and a …
nhibernate lazy-loading icriteriaHow do I take the "top n" using NHibernate Criteria API? Ideally I'd like to use detached criteria.
c# nhibernate criteria icriteriaI needed to filter a list of results using the combination of two properties. A plain SQL statement would look …
nhibernate expression icriteria