I am trying to create a mapping to a database table that has no primary keys/references.
public class TestMap : ClassMap<Test> {
public TestMap() {
WithTable("TestTable");
Map(x => x.TestColumn);
}
}
This fails and expects id or composite-id. Is this possible in fluent nhibernate?