Re: [fluent-nhib] Where's the wiki documentation for HasMany collection mapping?

2011-02-02 Thread Joe Brockhaus
were you able to find a solution to your problem? i'm having the same issue. er well, that is the same problem finding how to do it correctly. -- You received this message because you are subscribed to the Google Groups "Fluent NHibernate" group. To post to this group, send email to fluent-nhib

[fluent-nhib] Table name when automapping a collection of simple types

2011-02-02 Thread Martin Larsen
Hi there. I'm using the automapper to map a collection of strings. The mapping is working, but I'm wondering about the table name of the generated table. The table is named the same as the property in the class, so having public IList Foo { get; set; } generates a table in the database named "

[fluent-nhib] Re: Mapping non primary key to IDENTITY type column for SQLite

2011-02-02 Thread tparvi
Follow up to my own post. It seems that sqlite supports IDENTITY type of columns but they don't actually mean same thing as with sql server meaning there is no auto increment happening. I tested this with latest sqlite and sqlite shell. With sqlite only the primary key supports auto incrementing.