Skip to content

Support for [List] field

Pre-release
Pre-release
Compare
Choose a tag to compare
@MichaelHilus MichaelHilus released this 17 May 22:01
· 1 commit to master since this release

Added support for list fields.
Example usage within a viewer or other graph type:

[List]
public ListField<EntityA> EntityList => (context) =>
{
    return new List<EntityA>()
    {
        new EntityA { Id = new Guid(), Name = "No1" },
        new EntityA { Id = new Guid(), Name = "No2" }
    };
};