7
votes
8answers
2k views
Linq to NHibernate
I have been looking around for some example projects or tutorials on Linq to Nhibernate.
Does anyone know of any good ones?
5
votes
3answers
866 views
NHibernate.Linq and MultiCriteria
Anybody know of a way to batch NHibernate queries using NHibernate.Linq like you can do with MultiCriteria and ICriteria objects?
With MultiCriteria I can create something like this:
var crit = …
5
votes
2answers
879 views
Is Linq to NHibernate in the 2.1 Alpha release?
So the nHibernate 2.1 Alpha came out a few days ago, but the announcement on sourceforge doesn't mention the additional features. In particular, it doesn't mention whether LINQ is included. I know …
4
votes
1answer
186 views
Unique results from joined queries with NHibernate LINQ provider
I'm using NHibernate 2.1 with the LINQ provider and the results I get back from this query have multiple root nodes:
public IList<Country> GetAllCountries()
{
List<Country> results = …
4
votes
3answers
1k views
Best way to delete all rows in a table using NHibernate?
To keep my integration tests independent I remove all old data and insert new test data before each test. Is there a better way of doing this than simply querying for all entities and deleting them …
3
votes
2answers
1k views
Linq to NHibernate multiple OrderBy calls
I'm having trouble ordering by more than one field in my Linq to NHibernate query. Does anyone either know what might be wrong or if there is a work around?
Thanks!
Rob
Code:
…
2
votes
1answer
99 views
Linq-to-NHibernate OrderBy Not Working
I'm trying order a Linq to NHibernate query by the sum of it's
children.
session.Linq<Parent>().OrderBy( p => p.Children.Sum( c => c.SomeNumber ) ).ToList()
This does not seem to work. …
2
votes
1answer
127 views
Select n+1 problem
Foo has Title.
Bar references Foo.
I have a collection with Bars.
I need a collection with Foo.Title.
If i have 10 bars in collection, i'll call db 10 times.
bars.Select(x=>x.Foo.Title)
At …
2
votes
1answer
76 views
NHibernate.Linq LockMode
Is it possible to set the LockMode when using NHibernate.Linq? When using ICriteria I can this way:
var criteria = Session.CreateCriteria<Foo>();
criteria.SetLockMode(LockMode.None);
…
2
votes
1answer
95 views
Querying unmapped properties in nhibernate
I am working with Linq-To-NHibernate. I need to use some properties that is not mapped to columns.
For example
Repository<Person>
.Find()
.Select(p => new PersonModel() { Id = p.Id, …
2
votes
2answers
384 views
NHibernate Linq and DistinctRootEntity
When I execute the following query, I get an exception telling me that 'feedItemQuery' contains multiple items (so SingleOrDefault doesn't work).
This is expected behaviour when using the Criteria api …
2
votes
3answers
129 views
interface design with Linq2Nibernate and IQuerable
When using Linq2Nibernate is better to make you Repository return a IQuerable?
My understanding is that if you use Linq to Nibernate the the query will not "fire" until you call .First() or Single() …
2
votes
3answers
179 views
How to return first object of a collection from its parent
I am looking to do the following with a single database query if possible.
public class Location
{
public string URL {get;set;}
public IList<Page> Pages {get;set;}
}
Page firstPage = …
1
vote
1answer
69 views
Linq to nhibernate - Having where clause problems
I am using linq-to-nhibernate with the following query:
ISession session = GetSession();
var query = from storeZoneStyles in session.Linq<StoreZoneStyle>()
from storeZones in …
1
vote
2answers
129 views
Linq To NHibernate: .StartsWith on multiple properties
Hi,
I'm trying to accomplish the following query (notice .StartsWith):
return (from p in _session.Linq<Profile>()
where (p.Firstname + " " + p.Lastname).StartsWith(wildcard)
…
