I am trying to create a simple demo project with Sharp Architecture
and run into the following problem trying to map my first entity to my
legacy oracle database.

The full exception is here: http://pastebin.com/f69b8b105

Here is my class:
        public class Tank : Entity {
                [NotNull, NotEmpty]
                public virtual string Name { get; set; }
                public virtual bool Enabled { get; set; }
        }
and here is my map:
                public TankMap() {
                        WithTable("TANK");
                        Map(t => t.Id, "TANK_ID");
                        Map(t => t.Name, "TANK_NAME");
                        Map(t => t.Enabled, "ENABLED");
                }

What am I doing wrong?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Fluent NHibernate" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/fluent-nhibernate?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to