Search found 6 matches

by dvv153m
Wed Jun 23, 2021 10:14 am
Forum: Stimulsoft Reports.NET
Topic: Visibility of fields in the designer
Replies: 1
Views: 482

Visibility of fields in the designer

Здравствуйте, такой вопрос. Есть источник данных: public class TestDataSource { public Address Address { get; set; } public Person Person { get; set; } } public class Address {...} public class Person {...} В консольном приложении(на C#) создаю экземпляр этого объекта и передаю его в стимулсофт и от...
by dvv153m
Wed Jun 23, 2021 9:13 am
Forum: Stimulsoft Reports.NET
Topic: Nullable types
Replies: 3
Views: 634

Re: Nullable types

Спасибо
by dvv153m
Mon Jun 21, 2021 6:33 am
Forum: Stimulsoft Reports.NET
Topic: Nullable types
Replies: 3
Views: 634

Nullable types

Здравствуйте, такой вопрос. Есть источник данных: public class TestDataSource { public double? SomeValue { get; set; } } В консольном приложении(на C#) создаю экземпляр этого объекта и передаю его в стимулсофт и открывается дизайнер var test = new TestDataSource(); var stiReport = new StiReport(); s...
by dvv153m
Tue May 18, 2021 10:25 am
Forum: Stimulsoft Ultimate
Topic: REST OData nested objects
Replies: 6
Views: 11108

Re: REST OData nested objects

Solved a problem. Now a plate is automatically created for the nested object in the StimulSoft designer. It was necessary to mark the nested object as a navigation property. In the place where the Edmx model was described it was written like this edmBuilder.EntitySet <City> ("ReportOData")...
by dvv153m
Tue May 18, 2021 5:52 am
Forum: Stimulsoft Ultimate
Topic: REST OData nested objects
Replies: 6
Views: 11108

Re: REST OData nested objects

My OData service is http://95.213.239.58:12118/odata-api returns a collection of City objects. Within each City object, there is a nested collection of Street objects. Type description here http://95.213.239.58:12118/odata-api/$metadata When I add the OData service in the stimulsoft designer, a sepa...
by dvv153m
Fri May 14, 2021 4:13 pm
Forum: Stimulsoft Ultimate
Topic: REST OData nested objects
Replies: 6
Views: 11108

REST OData nested objects

Does the Stimulsoft designer know how to work with a REST OData data source with nested objects?