NHibernate is a mature, open source object-relational mapper (ORM) for the .NET framework.

learn more… | top users | synonyms

1
vote
0answers
22 views
+50

Adding IAutoMappingOverride with interface for all domain classes

I have an IAuditable interface that defines my class domain as auditable. public interface IAuditable { DateTime CreateAt { get; } IUser CreateBy { get; } DateTime? UpdateAt { get; } ...
0
votes
0answers
12 views
+50

HOW TO Implentation on NHibernate with ASP.NET MVC 2

I have been working on a MVC application for the past couple of days. In this I am using couple of dropdownlists and wanted to if what I have done is a good practice. I have around 5-6 dropdowns which ...