Skip to content
This repository was archived by the owner on Feb 1, 2025. It is now read-only.

Commit 4e159a5

Browse files
committed
merge fix
1 parent 333c7bf commit 4e159a5

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed
Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
1-
namespace LinqToDB.EntityFrameworkCore.BaseTests.Models.ForMapping;
2-
3-
public class WithInheritance
1+
namespace LinqToDB.EntityFrameworkCore.BaseTests.Models.ForMapping
42
{
5-
public int Id { get; set; }
6-
public string Discriminator { get; set; } = null!;
7-
}
3+
public class WithInheritance
4+
{
5+
public int Id { get; set; }
6+
public string Discriminator { get; set; } = null!;
7+
}
88

9-
public class WithInheritanceA : WithInheritance
10-
{
11-
12-
}
9+
public class WithInheritanceA : WithInheritance
10+
{
1311

14-
public class WithInheritanceA1 : WithInheritanceA
15-
{
16-
17-
}
12+
}
1813

19-
public class WithInheritanceA2 : WithInheritanceA
20-
{
21-
14+
public class WithInheritanceA1 : WithInheritanceA
15+
{
16+
17+
}
18+
19+
public class WithInheritanceA2 : WithInheritanceA
20+
{
21+
22+
}
2223
}

0 commit comments

Comments
 (0)