Finding pagenumber of table from DocumentIntelligenceClient
Hiya
I'm currently working a project that analyzes documents into a search index. I'm trying to change from the Form Recognizer nuget to the Document Intelligence nuget packet. When I do, there is a problem selecting the analyzed tables. In the Form Recognizer, you could get the tables on a single page by doing this:
tables.Where(t => t.BoundingRegions[0].PageNumber == pageNumber).ToList();
In the Document Intelligence (version 1.0.0 beta 2), It's impossible to do this, since the BoundingRegions are for some reason 0, even though there are tables on the page analyzed.
Some help/guidance would be appreciated!
Thanks in advance!