I am using Rhino Security as my security layer on top of NHibernate in my ASP.NET MVC 3 application. When I try to delete a secure entity, Rhino Security triggers for cleanup The OnPreDelete method
Tag: NHIBERNATE
NHIBERNATE – Update the subkey version does not increase
If I read the document correctly, if I have an Order entity that uses version column mapping (added by nhibernate), then changes to the order line should update the aggregate root (order) Version n
NHIBERNATE – Can’t find the field: ‘nancy.bootstrapper.nancybootstrapperlocator.bootstrapper’
I have been using Nancy fx recently and I like it, but when I try to make a structure diagram ioc like the documentation page suggests I get an error
Find Field not found:’Nancy.Bootstrapper.
NHIBERNATE: Add the entity to many-to-many collections only via ID
I am looking for shortcuts. I have some NH entities with many-to-many relationships. Something like this:
public class Customer: EntityBase
{
public virtual IList Categories {get; set; }
}
p
NHIBERNATE, MYSQL and GUIDS
I have a view that flattens the hierarchy of 4 tables to display as a report. In the view, it contains the primary key (Guid) of each table and some display data. < p>
The problem is that gui
WCF using MSMQ DTC – close NHibernate session
I have a WCF MSMQ service (hosted in a Windows service). There is TransactionScopeRequired attribute on my method.
I am using Nhibernate to convert my The data is saved to my database. I want
NHIBERNATE 3.3: Does the composite-id generate a Key property?
I have read that this mapping is impossible in NHibernate 3.3:
****
Basically I need a composite id attribute to be automatically calculated by NH.
There may be one Tips for gett
Decimal field truncated using NHibernate 3.2 and FluentnHibernate 1.3
I have a situation where the decimal field is truncated to five decimal places when saving to the database. This happens even if I have mapped them with 10 decimal places precision.
I use NHi
TSQL – Should you use NHIBERNATE and SQL Server 2008 external connection extraction?
When extracting external connections, the Nhibernate documentation says:
If your database supports ANSI or
Oracle style outer joins, outer join
fetching might increase performance by
limit
NHIBERNATE: Insert and Update Date
What is the best way to handle InsertDate (a.k.a CreateDate) and UpdateDate columns using NHibernate?
For example:
public class Customer
{
public virtual string Name {get; set; }
pub