0
votes
0answers
13 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
24 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
14 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
24 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
1answer
13 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
4answers
49 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
22 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
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 …
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"/>
…
-1
votes
1answer
30 views
Which approach to create the data access layer has the highest performance?
I have to create a very high performance application. Currently, I am using Entity Framework for my data access layer. My application has to insert some communication data almost every second. I found …
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
5answers
65 views
Correct use of nhibernate session
i have a client server application, the server uses nhibernate.
i wanna know how should i use the session?
per call?
per client?
single?
other way?
and how can i keep the session cache in the server …
0
votes
1answer
14 views
nhibernate hasmany when not using foreign key
Let say I have a request table, that looks as follows:
RequestId INT
ReferenceNumber VARCHAR
Each request is logged in a requestlog table. There are no foreign keys between the tables:
…
0
votes
0answers
20 views
nhibernate session strange behavior
i have an app with fluent nhibernate mappings..
when i start the app first time and initiate a session and a configuration an a session factory for the first time i see in the console that the …
2
votes
3answers
26 views
NHibernate Polymorphic Query on a Collection
I'm trying to write a query in NHibernate. I don't really care if I use the Criteria API or HQL, I just can't figure out how to write the query.
Here's my model:
public class LogEntry { public …
