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 2aa0e82 commit 83231fbCopy full SHA for 83231fb
Signum.Test/Environment/Entities.cs
@@ -80,7 +80,7 @@ public class ArtistEntity : Entity, IAuthorEntity
80
public AwardEntity? LastAward { get; set; }
81
82
[AutoExpressionField]
83
- public IEnumerable<Lite<Entity>> FriendsCovariant() => As.Expression(() => Friends);
+ public IEnumerable<Lite<Entity>> FriendsCovariant() => As.Expression(() => (IEnumerable<Lite<Entity>>)Friends);
84
85
public MList<Lite<ArtistEntity>> Friends { get; set; } = new MList<Lite<ArtistEntity>>();
86
0 commit comments