Skip to content

Commit e66dee7

Browse files
David EllingsworthDavid Ellingsworth
David Ellingsworth
authored and
David Ellingsworth
committed
GH-3530: Allow all properties of the LocaleEntity to be nullable.
1 parent ecd4750 commit e66dee7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/NHibernate.Test/NHSpecificTest/GH3530/Entities.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ namespace NHibernate.Test.NHSpecificTest.GH3530
99
public class LocaleEntity
1010
{
1111
public virtual Guid Id { get; set; }
12-
public virtual int IntegerValue { get; set; }
13-
public virtual DateTime DateTimeValue { get; set; }
14-
public virtual double DoubleValue { get; set; }
15-
public virtual decimal DecimalValue { get; set; }
12+
public virtual int? IntegerValue { get; set; }
13+
public virtual DateTime? DateTimeValue { get; set; }
14+
public virtual double? DoubleValue { get; set; }
15+
public virtual decimal? DecimalValue { get; set; }
1616
}
1717
}

0 commit comments

Comments
 (0)