Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 15bdb73

Browse files
committed
Merge pull request #374 from BruceCowan-AI/FixDateTimeOffsetTests
Make DateTimeOffsetTests work for Oracle which does not allow such a col...
2 parents a37b5a0 + 05ef568 commit 15bdb73

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/ServiceStack.OrmLite.Tests/DateTimeOffsetTests.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,15 @@ private interface IDateTimeOffsetObject<T>
7676
}
7777

7878

79-
public class HasDateTimeOffsetMemeber
79+
public class HasDateTimeOffsetMember
8080
{
81+
public int Id { get; set; }
8182
public DateTimeOffset MomentInTime { get; set; }
8283
}
8384

84-
public class HasNullableDateTimeOffsetMemeber
85+
public class HasNullableDateTimeOffsetMember
8586
{
87+
public int Id { get; set; }
8688
public DateTimeOffset? MomentInTime { get; set; }
8789
}
8890

0 commit comments

Comments
 (0)