Skip to content

Commit f4ab305

Browse files
Add float and double value to test entity
1 parent 1429edc commit f4ab305

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

  • tests/PhenX.EntityFrameworkCore.BulkInsert.Tests/DbContext

tests/PhenX.EntityFrameworkCore.BulkInsert.Tests/DbContext/TestEntity.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ public class TestEntity : TestEntityBase
1919
[Column("some_price")]
2020
public decimal Price { get; set; }
2121

22+
[Column("some_float")]
23+
public float Float { get; set; } = 10.1f;
24+
25+
[Column("some_double")]
26+
public double Double { get; set; } = 10.1d;
27+
2228
[Column("the_identifier")]
2329
public Guid Identifier { get; set; }
2430

0 commit comments

Comments
 (0)