Tagged Questions

0
votes
1answer
38 views

Can’t get Linq to NHibernate to work

Hi all, I'm struggling with getting Linq To NHibernate to work. I have referenced NHibernate, NHibernate.Linq and NHibernate.ByteCode.Castle . Also I have all other dependencies i …
0
votes
2answers
39 views

NHibernate and LINQ - InvalidOperationException: “Could not find entity named …”

Have a look at the following tests: [TestMethod] public void CanRead() { using (ISession session = OpenSession()) { var criteria = session.CreateCriteria(typeof(Actio …
1
vote
2answers
34 views

Does a function call in the Where(…) clause of a Linq to Nhibernate query negatively affect performance?

I use linq to nhibernate and the IQueryable.Where function in an application I'm building. And what mystifies me is how do the Expressions I create and pass to the Where function …
0
votes
1answer
27 views

Linq to NHibernate: Distinct

I am trying to get the following SQL output using Linq-to-NHibernate: SELECT DISTINCT Name, at.Year FROM MyTable mt INNER JOIN AnotherTable at ON at.Id = mt.AnotherTableId The N …
0
votes
1answer
41 views

NHibernate.Linq LIKE

How can I produce this query using NHibernate.Linq? WHERE this_.Name LIKE @p0; @p0 = 'test' // Notice NO % wild card Note, this is not Linq To Sql or Entity Framework. This is …
0
votes
3answers
214 views

Linq-to-NHibernate Query with multiple entities?

Does Linq-to-NHibernate support retrieving data from multiple entities in a single query? e.g. Dim query = From f In context.Session.Linq(Of Floor)() _ Selec …
0
votes
2answers
111 views

FluentNHibernate RTM and NHibernate.Linq

Hi, I've had a system up and running that used the Fluent NHibernate pre-release v0.0.1.0 along with NHibernate 2.1.0.4000 and NHibernate.Linq 1.0.0.0. I've just put in the new F …
0
votes
0answers
72 views

ADO.NET Data Services querying against LINQ to NHibernate: “Could not understand: (IIF(([1003] = null), null, Convert([1003].Contains(”name”))) = null)”

I'm trying to perform a simple query using ADO.NET Data Services running against LINQ to NHibernate. I can execute this query var query = _context.CreateQuery("FileDTOs") …
1
vote
1answer
44 views

Has anyone every received a “Unhandled Expression Type: 1004” using Linq to NHibernate?

I have a linq query that is passed into NHibernate which Linq2NHibernate will parse and return me populated entities. string firstName = "Ryan"; Store store = _repository.Query&lt …
0
votes
1answer
68 views

How to compare just the date, not the timestamp using LINQ

I'm trying to compare just the date of a column but because the query below is also comparing the time I get no result set back. How could I write this same LINQ query if I'm only …
0
votes
3answers
338 views

Filtering entities by subtype with NHibernate.Linq

Given this inheritance mapping: <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"> <class name="User" table="[User]" abstract="true"> <joined-subcla …
0
votes
2answers
119 views

Complex queries in linq to nhibernate

Hi, We are using accountability pattern for organizational structure. I using linq to nhibernate to find some departments and position but I have two problem. var query = Repo …
10
votes
5answers
781 views

strange linq to nhibernate issue, Invalid cast from ‘System.Int32’

Calling Get in the following code works fine: public class ContractService : IContractService { private readonly IRepository<Contract> repository; public ContractSe …
1
vote
1answer
279 views

FirstOrDefault() breaks FetchType=join with Linq to NHibernate

If i do Session.Linq<MyClass>().Where(x => x.Id = someId).FirstOrDefault(); where MyClass has a set of eager loaded child object on it, the FirstOrDefault() seems to pr …
1
vote
2answers
135 views

Linq to NHibernate generating 3,000+ SQL statements in one request!

Hi, I've been developing a webapp using Linq to NHibernate for the past few months, but haven't profiled the SQL it generates until now. Using NH Profiler, it now seems that the …

1 2 next
15 30 50 per page