Im trying to map the following classes: public abstract class Schedu开发者_C百科leType { public virtual int Id { get; set; }
Given this (HORRIBLE) object graph that I can\'t change public class Email { public Email(string email) { ... }
I am trying to do a MVC project where i want to us开发者_JS百科e fluent nhibernate. gonna use sql. unfortunately i am confused about how to even start it. i found no tutorials in the net. i need help
This question was asked back in October (unable-to-cast-object-of-type-nhibernate-collection-generic-persistentgenericbag). Basically, I have a POCO that has a one-to-many relationship modeled by a Li
am trying to implement fluent nhibernate in MVC project...there were no build errors... but when i run the project i get this exception
OK, so here is the problem. Its not even as crazy as the guy who wants to map m:n with different column counts in his PKs.
I am trying to use fluent nhibernate in a MVC project... i am very new to nhibernate and fluent... It seems the entities should have properties that are virtual and the set should be private for IDs..
I have to 2 entities like this: class A { int id { get; set; } string Name { get; set; } } class B { int id { get; set; }
How to configure Fluent NHibernate to output queries to Trace or Deb开发者_Python百科ug instead of Console?
I am having some probs with my fluent mappings. I have an entity with a child collection of entities i.e Event and EventItems for example.