The linq-to-nhibernate tag has no wiki summary.
1
vote
1answer
28 views
NHibernate LINQ : Why is a query using the incorrect char value if I repeat the call?
Using NHibernate 3.3.1.4000 / .Net 3.5
I have an object I'm mapping to an existing Oracle 10g database :
public MyJob : LegacyOracleDbObjects {
public virtual int JobID { get; protected set; }
...
0
votes
1answer
38 views
NHibernate query throws exception, when looking by related table
I have pretty simple linq expression:
session.Query<Order>().Where(x => x.States.OrderByDescending(z => z.Date).FirstOrDefault().Name == "2").ToList();
Result: InvalidCastException ...
1
vote
1answer
35 views
How to implement limit with Nhibernate and Sybase
We use Nhibernate 3.3 to connect to our Sybase Ase 15 database. Everything is fine except for the non support of the limit (or top). It is implemented in sybase but not in Nhibernate.
Do you have a ...
1
vote
1answer
26 views
Cached Fetch for User Roles from NHibernate in an MVC App
Using classes like this...
public class Login
{
public virtual Guid LoginId { get; set; }
public virtual string Name { get; set; }
public virtual string Email { get; set; }
public ...
0
votes
1answer
26 views
Nhibernate - Table-Valued Functions
I can generate the following SQL:
[dbo].[CategoryMatch]([CategoryId], ???) = 1
With the following HQL generator:
treeBuilder.Equality(treeBuilder.MethodCall("[dbo].[CategoryMatch]", new[] {
...
1
vote
1answer
57 views
Using methods to project nested DTOs in LINQ
Let's assume that we've got following entity:
public class Customer
{
public virtual int Id { get; set; }
public virtual string FirstName { get; set; }
public virtual string LastName { ...
0
votes
1answer
69 views
Generic parameter in NHibernate Linq query
Is there any way to compare generic types in linq query to translate to SQL with NHibernate?
Something like this:
public abstract class DataProviderBase<TDAO, TId>
{
protected ISession ...
-1
votes
1answer
78 views
LINQ Fluent NHIBERNATE .Contains() does not work in QueryOver<> but works in Query<>
Using FNH, i am trying to retrieve categories, using the following:
_session.QueryOver<Data.Model.Category>()
.Where(c => ...
0
votes
0answers
44 views
NHibernate Linq query yields no result
I have made a new view in my database, which contains 5 columns.
This view have been mapped through an NHibernate HBM file:
<?xml version="1.0" encoding="utf-8"?>
<hibernate-mapping ...
0
votes
0answers
107 views
How to do NHibernate paging using Session.Query<T> with a single call to Database?
I have implemented paging in NHibernate using the Session.QueryOver as following:
public PagedList<T> GetPaged(Expression<Func<T, bool>> expression, PagingInfo pagingInfo)
{
...
0
votes
1answer
233 views
Linq Nhibernate left join
A Theft has an action property
This is the query i'm trying to get NHibernate.Linq to produce:
SELECT * FROM `thefts`
LEFT JOIN memberThefts
ON thefts.id = memberThefts.theftId AND ...
0
votes
1answer
86 views
LINQ “equals” operator on nullable foreign key in NHibernate parent/child relationships
The background
My model looks like the following: (writing fields instead of properties for simplicity)
public class Entity {
public long Id;
public string Name;
public Entity Parent;
}
...
0
votes
0answers
15 views
Eager loading parent, grandparent, many-to-one by formula with LINQ-to-NH
I'm trying to load an object using LINQ-to-NH so that its parent, that parent's parent, and that a related object with an ID defined by a formula are all loaded at the same time. I'm using a wrapper ...
1
vote
0answers
258 views
Cacheable(), FetchMany() and ToFuture() in same NHibernate Linq query
Having a situation similar to the following example:
1 parent entity Employee having 2 child collections: Addresses and Phones
I need to retrieve in a single roundtrip all employees with their ...
0
votes
1answer
32 views
NHibernate Fetch when querying for single object
I'm trying to optimize an NHibernate query:
var profile = dc.Profiles.FirstOrDefault(p => p.IdProfile == idProfile);
I would like it to load a collection of Rights. I did this:
var profile = ...
0
votes
0answers
59 views
NH-to-LINQ Query with p => parent.child != null generates always-false where clause
I've got a query that I'm trying to run using NH 3.2.0.4000. I have a Foo class that has properties:
public virtual Int32? FooId { get; set; }
public virtual Foo PreviousVersion { get; set; }
public ...
0
votes
2answers
239 views
How to a NHibernate subquery in Where clause with LINQ?
I'm trying to write a correlated subquery in the where clause like this:
var foo = from d in session.Query<Document>()
where true ==
( from a in ...
2
votes
3answers
137 views
Linq - How to apply a where clause on the maximum element of a list
I have a list of "Person"
Each Person has a list of "Category"
Categoty has two atributes: Date and Value
I want to select a list of Person, where the last category equals "B". But I don't know how ...
2
votes
0answers
51 views
Expression type 'NhSumExpression' is not supported by this SelectClauseVisitor
I have a query that I can run in LinqPad, but not in NHibernate LINQ. I found a similar bug on NHibernate Jira NHibernate NH-2865, but I think this perhaps a different bug and I'm looking for ...
1
vote
1answer
43 views
NHibrenate Could Not Load Type
I'm getting some very strange behavior with Linq to nHibernate.
I can retrieve all objects I want and I can add where clauses.
But in a very specific case I get the following exception:
Could ...
0
votes
0answers
157 views
FluentNHibernate + Linq returns empty list
The Problem
I don't seem to be able to get my Linq query working with NHIbernate with a Fluent NHibernate configuration.
I'm attempting to debug but each time it appears that the connection is ...
0
votes
2answers
96 views
NHibernate query latest N per group
I have the following domain mapped through FluentNHibernate
class Point
{
public int Id { get; set; }
public string Label { get; set; }
}
class PointData
{
public int Id { get; set; } ...
0
votes
1answer
107 views
Linq query condition on self-referencing entity
I am trying to retrieve all entities of type Queried from the database where Referenced property or it's ancestor for which its label (meaning referenced.Parent.ChildLabel) is equal to some given ...
1
vote
1answer
157 views
Extending linq-to-nhibernate with custom hql generator
The goal is to do something like this using NHibernate and Linq:
Session.Query<MyClass>().Where(x => x.DateGreaterThen(DateTime.Now))
This example is a little bit simplified, but the idea ...
1
vote
2answers
120 views
Sum of top 5 elements in NHibernate Linq
I want to receive sum of property in top 5 elements in linq to NHibernate query. If I use below code:
Session.Query<Document>().Take(5).Sum(x => x.Value)
I get 'method not supported' ...
0
votes
1answer
114 views
NHibernate: HqlGenerator: Create calculated property by concatenating other properties
I am trying to add an HqlGenerator to allow NHibernate to query a calculated property on the following domain entity:
public class User
{
public string FirstName { get; set; }
public string ...
2
votes
1answer
172 views
How linq to nhibernate by join and Separate where in query
I have 3 classes : Person, Employee1 , Employee2
public class Employee1 : Person
{
}
public class Employee2 : Person
{
}
I need to a query on Person_Table that some time need to join ...
0
votes
1answer
50 views
Issue when quering Hierarchy to Hierarchy relationship
A Teacher has a one-to-one with a Student.
A SpecialTeacher extends Teacher but deals specifically with SpecialStudents.
Using table per class in the hierarchies.
public class Teacher
{
...
1
vote
2answers
178 views
Can NHibernate query for specific children without lazy loading the entire collection?
When I have an entity object with a one-to-many child collection, and I need to query for a specific child object, is there a feature or some clever pattern I haven't come up with yet to avoid that ...
2
votes
1answer
126 views
NHibernate - Query misses the query cache after saving a new entity
I have NHibernate (with NHibernate.Linq and Fluent NHibernate) set up with query caching. Everything works fine until I do a session.Save(new Widget()) (i.e. SQL INSERT). After that point, all queries ...
2
votes
1answer
117 views
fluent nhibernate first level cache not working as expected
I have a function which gets called many times in one session. To my understanding with NHibernate first level cache, exact query in the same session will execute only once irrespective of the number ...
0
votes
2answers
67 views
Dynamically composing LINQ expressions
Is it possible to combine dynamically expressions:
from c in collection where c.Property == true select c
with expression
from result in results
group result by result.Property
into g
select ...
0
votes
1answer
36 views
NHibernate: Handling Select() on empty result sets
Invoking the following query when there is no Entity record in the database throws a NotSupportedException
var list = session.Query<Entity>()
.OrderBy(x => ...
7
votes
3answers
175 views
Unexpected Linq Behavior - ToList()
I have two similar queries theoretically returning the same results:
var requestNotWorking = SessionManagement.Db.Linq<Item>(false).Where(i =>
i.Group != null ...
0
votes
0answers
89 views
Sum over children of children in LINQ-to-NHibernate
I'm using NHibernate 3.2.0.4000 and the LINQ provider that comes with it. I'm trying to take a sum over children of children, but I keep getting exceptions. My goal is to use a group by, then sum ...
1
vote
1answer
241 views
How to write this linq query with Criteria or QueryOver API
Is it possible to convert this code at below, written by using Query(linq) api to Criteria or QueryOver API in NHibernate? I'm using this to format data into DTO's also it works with just one ...
1
vote
2answers
139 views
How select max of string in linq to nhibernate
I have a Card class . This class has a Code column by string type.
I have a linq-to-NHibernte query for select max of codes.
var q = SessionInstance.Query<Card>()
.Max(x => x.Code);
...
0
votes
2answers
106 views
How to prevent Nhibernate from fetching derived class?
I am using Nhibernate and I have a problem when fetching a base class with multiple derived classes (each class mapping a different table). When I watch the request, Nhibernate joins on every derived ...
0
votes
1answer
71 views
NHibernate: Aggregates and rownum
I am trying to achieve the following SQL from NHibernate (via NHibernate Criteria or LINQ).
SELECT MIN(ID)
FROM
(SELECT *
FROM PERSON
WHERE CITY = 'SYDNEY' and ROWNUM < 1000)
I.e. The ...
0
votes
1answer
239 views
How to use join with multiple conditions in linq-to-Nhibernate
I have two classes (Request & RequestDetail). I need to a Linq To NHibernatequery between two classes by join.
var q = SessionInstance.Query<Request>()
.Where(x => x.State == ...
2
votes
3answers
527 views
How use of select for associations in linq to NHibernate
I have a application by NHibernate Implementation. My project has a Person Class :
public class Person : RootEntityBase
{
virtual public string FirstName { get; set; }
virtual public ...
1
vote
1answer
173 views
Lazy Loading child collection with ToFuture
I'm currently using c# with Nhibernate 3.2 hitting a SqlServer database, and I am trying to work with multiquery's and Futures to load a child collection.
Anyways I can get it to work using Linq to ...
2
votes
1answer
82 views
NHibernate Linq over a dictionary
I have a following excerpt of my domain (and FNH mapping)
public class Product
{
public virtual int Id { get; set; }
public virtual string Name { get; set; }
public virtual ...
0
votes
3answers
135 views
How to improve select performance in NHibernate
I need to materialize about 20000 records from database and write it as CSV. Unfortunately materialization of that records is extremely slow in NHibernate. Is there an option to get SQL generated by ...
2
votes
1answer
138 views
Linq: select property collection
I have two classes:
public class Person
{
public int Id{get;set;}
public string Name{get;set;}
public List<Order> Orders{get;set;}
}
public class Order
{
public int Id{get;set;}
...
0
votes
0answers
105 views
Converting NHibernate results to different types
I have the following HQL query, which more-or-less works the way I want. When I call the List() method, an ArrayList of objects are returned. Each item in the list is an object[] which contains a ...
5
votes
1answer
388 views
How to set timeout for NHibernate LINQ statement
I am using Fluent NHibernate for my ORM. In doing so I am trying to use the NHibernate LINQ syntax to fetch a set of data with the power of LINQ. The code I have works and executes correctly with the ...
0
votes
0answers
160 views
NHibernate creates SQL query with cast to char
I use NHibernate to query some Data. C# looks like this:
var query = NHibernateSession.Query<T>();
if (!emptyFilter)
{
query = query.Where(filter);
}
...
1
vote
2answers
319 views
How use Distinct in linq & linq to NHibernate by some columns
I have a Address class.
public class Address : RootEntityBase
{
virtual public string Province { set; get; }
virtual public string City { set; get; }
virtual public string ...
0
votes
1answer
108 views
Problems with ActiveRecord and LINQ queries
I have a simple class:
public class User : ActiveRecordLinqBase<User>
{
[PrimaryKey(Column = "user_id", Length = 20)]
public string Id { get; set; }
[Property(Column = "password", ...

