Search Results

2
votes

Cascade.SaveOrUpdate (SQLite) fluent-nhibernate

Maybe a little (or a lot) late, but nonetheless, I simplified your example to look like this: public class Tournament { public virtual Guid Id { get; private set; } …
1
vote

Child tables in NHibernate

I modified your example just a bit (in line with many of the suggestions here): public class Person { private IList<Pet> pets; protected Person() {} public P …
4
votes

What’s the proper way to update an nhibernate entity from a asp.net POST action method?

Here's an example that does what I think you're trying to do. Let me know if I've misunderstood what you're trying to do. Given the following "domain" classes: public class …
1
vote

NHibernate collections and moving objects

I'm assuming that you are using Cascade in the mapping for the class represented by objects A and B, i.e., A and B are both instances of some class X, and X's mapping contains a cascade attribute o …
1
vote

Which data framework is better for an ASP.NET MVC site - LINQ to SQL or NHibernate

The short (and not so helpful) answer is that both of the ORMs you've mentioned will work with MVC. A longer answer is that you should think about how you want to work with your model objects. Fo …
0
votes

Is Unit of Work more efficient if I don’t care for transactions etc?

Yes, you should use a transaction. From Ayende's blog: "NHibernate assume that all access to the database is done under a transaction, and strongly discourage any use of the session withou …