Update:
You will need to implement your own IUserType to handle endless guides.
You can read about it here:
http://dotnet.dzone.com/articles/understanding-nhibernate-type
, , .
""
Id Guid:
public virtual Guid Id { get; private set; }
ClassMap :
Id(x => x.Id)
.Column("Id")
.GeneratedBy.GuidComb();
.
Id(x => x.Id)
.Column("Id")
.GeneratedBy.Guid();
System.Guid
Id(x => x.Id)
.Column("Id")
.GeneratedBy.GuidNative();
, Guid .