i have gwt application connect to postgres DB at the backend, and a java class \'Judgement\' mapping the table \'judgements\' in DB, when i tried to persistent a judgement i
For anyone using FluentNHibernate (my version is 2.1.2), it's just as repetitive but this works:
public class UserMap : ClassMap { public UserMap() { Table("users"); Id(x => x.Id).Column("id").GeneratedBy.SequenceIdentity("users_id_seq");