Example #1
0
        public async Task <ActionResult <TestData> > TestGet()
        {
            var entities = await provider.GetEntitiesAsync(new EntitySearch());                 //This should get all?

            var values = await provider.GetEntityValuesAsync(new EntityValueSearch());          //This should get all?

            var relations = await provider.GetEntityRelationsAsync(new EntityRelationSearch()); //This should get all?

            return(new TestData()
            {
                EntityCount = entities.Count,
                ValueCount = values.Count,
                RelationCount = relations.Count
            });
        }