Tagged Questions
The nhlambdaextensions tag has no wiki summary.
5
votes
2answers
321 views
How do I express “not in” using lambdas?
I'm trying to create a not in clause with the NHibernate Criteria API using NHLambdaExtensions. Reading the documentation I was able to implement the in clause by doing
...
4
votes
1answer
352 views
Dividing using nhibernate results in “Could not determine member from”
This is probably something simple but I seem to be lacking some knowledge of how nhibernate works. This is my code:
ICriteria query = Session.CreateCriteria();
query = ...
2
votes
2answers
294 views
How to render Max(Substring) with Lambda Extensions
I'm using NHibernate with Lambda Extensions. I'd like to know how to nest a Max function with a Substring.
The following statement retrieves Max("invoice_id")
var ret = session
...
2
votes
0answers
250 views
Using an interface for a subquery in NHibernate
I normally query interfaces using DetachedCriteria in NHibernate:
DetachedCriteria crit = DetachedCriteria.For<IParent>();
And this works fine.
I now want to create a subquery for a child ...
2
votes
1answer
135 views
NHLambdaExtensions: Create a Criterion object to add to ICriteria later
My application creates a dynamically generated query at runtime based on user input by creating Criterion objects e.g:
ICriterion criterion = Restrictions.Eq("Name", "John");
......
...
2
votes
2answers
1k views
NHibernate Lambda Extensions - CreateCriteria Issue
I want to convert a NHibernate CreateCriteria over to a NHLambdaExtensions criteria, but I'm getting errors that I don't know how to fix.
The NHibernate criteria looks like this:
var departments = ...
1
vote
1answer
148 views
.NET - execute a lambda on another computer
I've recently implemented an IronRuby web service application for a client, to replace an existing C# .NET DLL. What the client forgot to mention was that in the mean time they implemented a new ...
1
vote
1answer
795 views
fluent nhibernate problem mapping char(1) type
The map.
public SocialCodeMap()
{
Id(x => x.SocialCodeId);
Map(x => x.Name);
Map(x => x.Code);
Map(x => x.DisplayOrder);
}
And the Class.
...
0
votes
0answers
88 views
help with expression for nHibernate linq provider extension
I'm working on a custom linq extension for nHibernate by extending the BaseHqlGeneratorForMethod. The technique is documented here:
...
0
votes
1answer
166 views
NHibernate 3.1: MissingMethodException when calling LambdaExtensions
Since upgrading from NH 3.0 to 3.1 I've been having some trouble using the following code:
criteria = session.CreateCriteria<User>()
.Add(SqlExpression.InG<User, int>(user => ...
0
votes
1answer
84 views
'OR' in NHibernate Lambda Extensions
How can I union two criterias with OR statement?
For example I whant to get Employee wich have null in Birthday field OR value of this field is less than someDate. How should I rewrite this code:
...
0
votes
1answer
1k views
NHibernate Lambda Extensions can't use any alias query on DetachedCriteria
I'm trying to write a simple query that requires an alias as it's a Many-To-Many assocation however I can't get it to work with NH Lambda Extensions. It always gives me a compile error even though as ...
0
votes
1answer
471 views
NHibernate Lambda Extensions - Eager Loading a collection's assosciations
I've got a Criteria Query for a social networking site. A Person object has a collection of Friends (also person objects). The query grabs the first N friends, but I also want to eager load an ...
0
votes
1answer
63 views
NHibernate Lambdas joined ordered collection
I have a entity 'Person' a person has a collection of Friends (also Person entities)
I want to get the first 10 Friends of a particular person, ordered by LatestLogin.
My best effort is:
public ...
-1
votes
3answers
137 views
ASP.Net MVC - Helper lambdaexpression post action
I created this helper method using a lambdaexpression to used strongly type helper in a view
Helper
public static string DateFor<TModel, TDate>(this HtmlHelper<TModel> helper, ...