1
vote
1answer
11 views
NHibernate self-join many-to-many symmetric relationship (person friends problem)
Is there any way to set-up a symmetric self-join relationship mapping in NHibernate? Suppose we have two tables:
Users
id
Relations
id
user1
user2
relation_type
The User and Relation …
0
votes
1answer
30 views
NHibernate criteria to query parent objects with at least one child object?
In my project, Lines can be grouped and a Group has a type which can be either Crossing (1) or Parallel (2). I need to find all lines which has at least one group of a specified type (in this case, …
0
votes
0answers
19 views
What are the steps to read an object from an ADO.net data service?
Hi, I'm new to ADO.net data services (and to .net in general too..), I'm having this project where I need to setup a data service to read and write to a database with nHibernate, I've created the …
0
votes
2answers
30 views
NHibernate Many To Many Relationship - Issue when deleting a part of the relationship
I have a many to many relationship between a Team and an Employee entity.
I mapped them as follows:
public class EmployeeMap : ClassMap<Employee>
{
public EmployeeMap()
{
// …
0
votes
1answer
20 views
How does LLBLGen Compare to Nhibernate and Linq to Entities Performance wise
I am currently using Linq to entities. i am hearing from colleagues that they are having performance issues with L2E and had to implement caching in several places. I have researched some ORMs but …
0
votes
1answer
15 views
How to mimick medium trust?
Is it possible to change my local dev environment (preferrably just a single IIS site) to work under medium trust?
0
votes
1answer
43 views
is it possible to use sqlite manifest typing features in nhibernate?
Hi, this was posted on hibernate.org forums and nhusers list without much luck, so I thought I would try here.
Put simply, suppose I have a class:
class A
{
public virtual object SomeValue { get; …
0
votes
1answer
17 views
Updating all rows of a denormalized table in NHibernate
Hey all, quick NHibernate question.
In my current project, we have a denormalized table that, for a given unique header record, will have one or more denormalized rows.
When the user is accessing a …
0
votes
2answers
19 views
Mapping self-table one-to-many using non-PK clolumns
Hey, i have a legacy DB to which a Person object is mapped, having a collection of family-members, like this:
class Person
{
...
string Id; /* 9-digits string */
…
1
vote
1answer
25 views
NHibernate.Mapping.Attributes.Filter
Hello people! I'm mapping my database tables using NHibernate with NHibernate.Mapping.Attributes library and I got stuck to get the Filter attributes to work.
Suppose a class A that has a set of …
0
votes
4answers
52 views
NHibernate and python
Hi,
We have an existing C# project based on NHibernate and WPF. I am asked to convert it to Linux and to consider other implementation like Python. But for some reason, they like NHibernate a lot …
0
votes
1answer
24 views
NHibernate: Parent list properties and related child properties are not synchronized
I have two related objects: ProgramSession and ProgramTask, with a one-to-many relationship. A ProgramSession has many ProgramTasks. So the objects looks like this:
public class ProgramSession
{
…
0
votes
1answer
36 views
NHibernate property mapping: columns and formula
When i map columns from the inspected table, i do this:
<property name="InstanceName" type="MyNameUserType, MyApp.MyNamespace">
<column name="Name"/>
<column name="Name2"/>
…
2
votes
2answers
61 views
Repository + NHibernate + DTO
I have an application with a repository layer (and a nhibernate implementation), service (bussiness) layer, and an asp.net mvc in the web layer.
Because I also need to create a small silverlight …
0
votes
2answers
32 views
Caste ActiveRecord - LINQ optimised query
I use Castle ActiveRecord as my persistance layer.
I got this functions that must return the first 20 users from the database.
IList<User> users = new List<User>();
var userQuery = from …
