Page 1 of 1

Poco objects make RegData() hang

Posted: Tue Jul 05, 2011 4:45 am
by gammern
I am trying to convert a Wpf FixedDocument report to Stimulsoft Reports.Wpf 2011.1 Trial.

Everything works fine except calling RegData() with an IList. It will hang, cpu goes ski-high. RegBusinessObject() works, but it will stripp of any navigational properties that is needed in the report :-(

If I convert the IList list to a list of types that resemble the poco classes, RegData() works fine. The new local classes do not have navigational props and changetracker (IDictionary?).

Is it possible to feed a report with a generic list of Entity Framework poco types with navigational props?
Can I tell the code generator to ignore types?

Poco objects make RegData() hang

Posted: Tue Jul 05, 2011 8:15 am
by Alex K.
Hello,

Please send us a sample project for analysis.

Thank you.

Poco objects make RegData() hang

Posted: Mon Aug 29, 2011 3:40 am
by mcgu
Hello,

is there a solution for this issue, i'm having the same problem.

Poco objects make RegData() hang

Posted: Mon Aug 29, 2011 2:29 pm
by Jan
Hello,

This problem can occurs when business object have big amount of nested objects, but you can limit amount of parsed level with help of following code:

Code: Select all

Stimulsoft.Report.StiOptions.Dictionary.BusinessObjects.MaxLevel = 2;
Thank you.