Tagged Questions

3
votes
4answers
3k views

DevExpress eXpressApp Framework (XAF) and eXpress Persistent Objects (XPO): how do I speed up the loading time of associations?

I am having a problem with the speed of accessing an association property with a large number of records. I have an XAF app with a parent class called MyParent. There are 230 records in MyParent. ...
1
vote
1answer
145 views

devexpress XPO calculated property on child collection select n + 1

I have a XPO domain object Order which has a association with OrderLine. In order I have a property Profit which is implemented as public decimal Profit { get { decimal result = 0; ...
0
votes
1answer
45 views

Save time like TimeSpan and parse it

I using xaf and xpo for my app. I have TimeSpan field for time: private TimeSpan showTime; public TimeSpan ShowTime { get { return showTime; } set { SetPropertyValue("ShowTime", ref ...