Category Archives: NHibernate

Beyond the basics: IPropertyAccessor

Consider the following classes: an abstract Account and a concrete SavingAccount abstract class Account { int Id { get; protected set; } int CustomerId { get; protected set; } abstract AccountType Type { get; } } class SavingAccount : Account, … Continue reading

Posted in NHibernate | Leave a comment