File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/NHibernate.Test/NHSpecificTest/NH3614 Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ namespace NHibernate.Test.NHSpecificTest.NH3614
77{
88 public class Entity
99 {
10- public virtual int Id { get ; protected set ; }
10+ public virtual Guid Id { get ; protected set ; }
1111 public virtual IList < string > SomeStrings { get ; set ; }
1212 }
1313}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public class Fixture : BugTestCase
1313 [ Test ]
1414 public void CanProjectListOfStrings ( )
1515 {
16- int id ;
16+ Guid id ;
1717 using ( var s = OpenSession ( ) )
1818 using ( var tx = s . BeginTransaction ( ) )
1919 {
Original file line number Diff line number Diff line change 44 namespace=" NHibernate.Test.NHSpecificTest.NH3614" >
55
66<class name =" Entity" >
7- <id name =" Id" >
8- <generator class =" native " />
9- </id >
7+ <id name =" Id" type = " guid " >
8+ <generator class =" guid.comb " />
9+ </id >
1010
1111 <bag name =" SomeStrings" table =" SomeStrings" cascade =" all-delete-orphan" >
1212 <key >
You can’t perform that action at this time.
0 commit comments