Can anyone help me how to map c# system.guid
to oracle varchar2(100)
. I tried using
Id(m=>m.Id).Column("xxx").GeneratedBy.Guid();
The query generated is without quotes and so failing insert in oracle.
Can anyone help me how to map c# system.guid
to oracle varchar2(100)
. I tried using
Id(m=>m.Id).Column("xxx").GeneratedBy.Guid();
The query generated is without quotes and so failing insert in oracle.