File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/NHibernate.Test/NHSpecificTest/GH3530 Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ namespace NHibernate.Test.NHSpecificTest.GH3530
88{
99 public class LocaleEntity
1010 {
11- public virtual Guid Id { get ; set ; }
11+ public virtual int Id { get ; set ; }
1212 public virtual int IntegerValue { get ; set ; }
1313 public virtual DateTime DateTimeValue { get ; set ; }
1414 public virtual double DoubleValue { get ; set ; }
Original file line number Diff line number Diff line change 22<hibernate-mapping xmlns =" urn:nhibernate-mapping-2.2" assembly =" NHibernate.Test"
33 namespace =" NHibernate.Test.NHSpecificTest.GH3530" >
44 <class name =" LocaleEntity" >
5- <id name =" Id" generator =" guid.comb " />
5+ <id name =" Id" generator =" identity " />
66 <property name =" IntegerValue" column =" IntegerValue" />
77 <property name =" DateTimeValue" column =" DateTimeValue" />
88 <property name =" DoubleValue" column =" DoubleValue" />
9+ <property name =" DecimalValue" column =" DecimalValue" />
910 </class >
1011</hibernate-mapping >
You can’t perform that action at this time.
0 commit comments