Tagged Questions
0
votes
0answers
27 views
How can I write this operation inside a createCriteria?
public class Company
{
public virtual int? ID { get; set; }
public virtual string Name { get; set; }
public virtual IList<Worker> Workers { get; set; }
}
public class Worker
{
...
1
vote
1answer
89 views
Explain the difference between CreateCriteria(typeof(Cat)) and CreateCriteria<Cat>()
I've seen both formats in different examples, tutorials, blogs, etc, but for the life of me, I cannot find an explanation for the difference. What is the difference between
ICriteria crit = ...
0
votes
2answers
163 views
NHibernate CreateCriteria with Restrictions does not work as expected
The bellow given code sample is to retrieve all the active records.
session.CreateCriteria<VesselMasterData>()
.CreateAlias("BasicInfo", "bsInfo")
...
0
votes
3answers
288 views
NHibernate query collection
I have a users and roles table. A user can have multiple roles.
I want to grab all of the users without a specific role. The problem is if a user has 2 roles, one being the role we don't want, the ...
1
vote
3answers
1k views
nhibernate CreateCriteria wildcard Like when
In SQL I can write
SELECT blah FROM Clients
Where @p1 Like '%'+lastname+'%'
How do I represent this with CreateCriteria in Nhibernate?
I've tried ...
1
vote
2answers
326 views
Sorting with Mathematical Formula with nHibernate (C#)
public class Feedback
{
public virtual int Id { get; private set; }
public virtual string ContentText { get; set; }
public virtual DateTime FeedbackDate { get; set; }
public virtual Student ...
1
vote
1answer
526 views
NHibernate CreateCriteria not working correctly with association and dates
I am trying to create an association to load a list of parent objects based on a child objects date field. I only want parent objects where the date is >= a given date.
The problem is, when I use ...
1
vote
1answer
385 views
Why doesn't session.CreateCriteria(typeof(…)) fail for an unmapped type?
For every entity that I create I write a unit test that just loads one record from the database to see if the query works and the data can be set on the entity correctly. You could see this as a unit ...
1
vote
3answers
352 views
How do I get NHibernate to do a join?
I've used Fluent NHibernate to hook up a store and employee class where Stores can have many employees as follows:
public class Store
{
public virtual IList<Employee> Employees { get; set; ...
1
vote
1answer
788 views
NHibernate CreateCriteria and CreateQuery generates different sql?
I'm new to NHibernate and can't figure out why these two statements generates different sql.
the first one only get the ClientInformation (with Information and Client being Proxies) which is what i ...
0
votes
1answer
1k views
Load collections eagerly in NHibernate using Criteria API
I have an entity A which HasMany entities B and entities C. All entities A, B and C have some references x,y and z which should be loaded eagerly.
I want to read from the database all entities A, and ...
0
votes
4answers
2k views
NHibernate query CreateCriteria
Is it possible to chose what columns I want in return from Session.CreateCriteria() ?
egz.:
var x = session.CreateCriteria();
x.CreateAlias("EmployeePosition", "employeePosition");
...
7
votes
3answers
16k views
hibernate - createCriteria or createAlias?
If I want to search those students who take class "Math" and "John" is his group:
shoud I use createCriteria or createAlias?
Criteria:
Criteria criteria = session.createCriteria(Student.class);
...
1
vote
2answers
3k views
CreateCriteria inside Expression.Disjunction() fluent nhibernate
criteriaCount.CreateCriteria(AdvertisementsProperties.City.ToString())
.Add(Expression.Like(CitiesProperties.Name.ToString(), query, MatchMode.Anywhere))
...
0
votes
0answers
306 views
Using CreateCriteria within PreInsert/PreUpdate Event Listener
I want to have a centralize place to check for inserts or updates to an object, and for certain scenarios, I want to update it's parent based on the information from the child. I have the following ...
9
votes
3answers
7k views
NHibernate: CreateCriteria and Exists clause
How can I write the following SQL using CreateCriteria:
SELECT * FROM FooBar fb
WHERE EXISTS (SELECT FooBarId FROM Baz b WHERE b.FooBarId = fb.Id)