I was under the impression, when using nHibernate, after you create the mapping xml files etc., all the plumbing for basic CRUD operations is done for you, along with the class files i.e.
public class Employee
{
public virtual string Name {get; set; }
}
But I must be wrong here because there doesn't seem to be anything generated, or is it generated internally when the session/config gets built on the first page load?