Search Results

1
vote

NHibernate vs LINQ to SQL

By LINQ, I'm assuming you mean LINQ to SQL because LINQ, by itself, has no database "goings on" associated with it. It's just an query language that has a boat-load of syntac sugar to make it look …
5
votes

How can I generate “migration” DDL from NHibernate mapping files?

Look into SchemaUpdate. Very similiar API as SchemaExport but it only creates migrations. …
8
votes

How do you deal with concurrency in NHibernate?

NHibernate supports 2 types of optimistic concurrency. You can either have it check dirty fields by using "optimistic-lock=dirty" attribute on the "class" element in your mapping files or …
3
votes

How can I use Expression<T> in NHibernate?

Look at LINQ to NHibernate. Kyle Baley has a great overview of it …
3
votes

DB Column named “Order” with Fluent NHibernate

Try putting Order in back ticks: `Order `. Since FluentNH is generating HBM files at runtime I imagine that should fix the problem. …