I have the following classes: class Person { public string Name { get; set; } } class Employee : Person { public int Salary { get; set; }
I am trying out the FluentNHibern开发者_如何学Pythonate AutoPersistenceModel for the first time. It was very simple to get a basic example working but I am having a problem making it fit with how I wo
I am developing a windows forms smart client that uses Fluent Nhibernate 1.1 and NHibernate 3.0 for persistence.
I\'m having a go at getting a test project up and running.I\'ve nabbed a load of code from this article.....
I\'m attempting to have wpf databind to a collection of data models and, display them using datatemplates. Currently this is working perfectly when using an IList, however the databinding doesn\'t see
Suddenly doing updates into a few tables have gotten 10 times slower than they used to be.What are some good recommendations to determine root cause and optimization?Could it be that indexing certain
I am using SQLite for unit test. private ISession _session; [SetUp] public virtual void SetUp() 开发者_如何转开发{
Disclaimer: I\'m fairly new to NH & ORM in general. Disclaimer: I\'m working with a build of FNH from here in order to use with NH3.0GA.
Does Fluent NHibernate has a simple method for automapping entities? Let\'s say I have some classes like the following one and corresponding classmaps:
I am using Fluent NHibernate and NHibernate.Core 3 beta 1. I have two classes: public class Promotion {