File tree Expand file tree Collapse file tree 1 file changed +14
-20
lines changed
src/NHibernate.Test/NHSpecificTest/GH3530 Expand file tree Collapse file tree 1 file changed +14
-20
lines changed Original file line number Diff line number Diff line change 11using System ;
2- using System . Collections . Generic ;
3- using System . Linq ;
4- using System . Text ;
5- using System . Threading . Tasks ;
6- using NHibernate . SqlCommand ;
72
8- namespace NHibernate . Test . NHSpecificTest . GH3530
3+ namespace NHibernate . Test . NHSpecificTest . GH3530 ;
4+
5+ public abstract class Entity
96{
10- public abstract class Entity
11- {
12- public virtual Guid Id { get ; set ; }
13- }
7+ public virtual Guid Id { get ; set ; }
8+ }
149
15- public abstract class DataEntity < T > : Entity where T : struct
16- {
17- public virtual T DataValue { get ; set ; }
18- }
10+ public abstract class DataEntity < T > : Entity where T : struct
11+ {
12+ public virtual T DataValue { get ; set ; }
13+ }
1914
20- public class IntegerEntity : DataEntity < int > { }
21- public class DateTimeEntity : DataEntity < DateTime > { }
15+ public class IntegerEntity : DataEntity < int > { }
16+ public class DateTimeEntity : DataEntity < DateTime > { }
2217
23- public class DoubleEntity : DataEntity < double > { }
24- public class DecimalEntity : DataEntity < decimal > { }
25- public class NHDateTimeEntity : DataEntity < DateTime > { }
26- }
18+ public class DoubleEntity : DataEntity < double > { }
19+ public class DecimalEntity : DataEntity < decimal > { }
20+ public class NHDateTimeEntity : DataEntity < DateTime > { }
You can’t perform that action at this time.
0 commit comments