We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bfbdb7 commit 4b1a3d1Copy full SHA for 4b1a3d1
src/NHibernate.Test/NHSpecificTest/GH3643/Entity.cs
@@ -7,7 +7,7 @@ namespace NHibernate.Test.NHSpecificTest.GH3643
7
{
8
class Entity
9
10
- private readonly ICollection<ChildEntity> _children = [];
+ private readonly ICollection<ChildEntity> _children = new List<ChildEntity>();
11
public virtual EntityId Id { get; set; }
12
public virtual ICollection<ChildEntity> Children => _children;
13
}
0 commit comments