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
8
8
{
9
9
public class LocaleEntity
10
10
{
11
- public virtual Guid Id { get ; set ; }
11
+ public virtual int Id { get ; set ; }
12
12
public virtual int IntegerValue { get ; set ; }
13
13
public virtual DateTime DateTimeValue { get ; set ; }
14
14
public virtual double DoubleValue { get ; set ; }
Original file line number Diff line number Diff line change 2
2
<hibernate-mapping xmlns =" urn:nhibernate-mapping-2.2" assembly =" NHibernate.Test"
3
3
namespace =" NHibernate.Test.NHSpecificTest.GH3530" >
4
4
<class name =" LocaleEntity" >
5
- <id name =" Id" generator =" guid.comb " />
5
+ <id name =" Id" generator =" identity " />
6
6
<property name =" IntegerValue" column =" IntegerValue" />
7
7
<property name =" DateTimeValue" column =" DateTimeValue" />
8
8
<property name =" DoubleValue" column =" DoubleValue" />
9
+ <property name =" DecimalValue" column =" DecimalValue" />
9
10
</class >
10
11
</hibernate-mapping >
You can’t perform that action at this time.
0 commit comments