nhibernate-projections Questions
4
Solved
I am a little confused about Hibernate's projections and criteria. When to use projections and when to use criteria?
Tourbillion asked 21/9, 2011 at 10:23
2
Solved
When using projection on the properties, the result is returned as the list with the elements in the same sequence as that defined in the projections block. At the same time the property names are ...
Mcfarlane asked 7/11, 2012 at 0:40
2
Solved
I would like to get this SQL from NHibernate:
SELECT SUM(color_pages) * SUM(total_pages)
FROM connector_log_entry
GROUP BY department_name
But I can't find any arithmetic operation (*) projecti...
Kaduna asked 28/1, 2011 at 13:10
3
Solved
As a new user of nHibernate and its utility library, fluent nhibernate, I am trying to learn enough to be dangerous with a good database.
I am having an exceptionally great deal of difficulty under...
Dougald asked 26/5, 2011 at 14:37
1
I have an entity that represents a Tweet from Twitter like so:
public class Tweet
{
public virtual long Id { get; set; }
public virtual string Username { get; set; }
public virtual string Messa...
Decorticate asked 11/9, 2010 at 11:37
1
© 2022 - 2024 — McMap. All rights reserved.