Tagged Questions
14
votes
9answers
6k views
Any thoughts on DevExpress XPO ORM Package? [closed]
XPO is the object relational mapper of choice at my company. Any thoughts on the pros and cons?
I was just looking for general feeling and anecdotes about the product. We are not switching to XPO. ...
3
votes
2answers
1k views
Tips for Migrating from XPO to LINQ to SQL
I'm a long-time user of the DevExpress XPO library. It has many great features, but there are a few weaknesses:
When saving an existing object, all properties are sent in an update query; changes ...
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.
...
3
votes
1answer
1k views
How to save persistent objects databound to a DataLayoutControl (DevExpress tools)?
I have a small form displaying the DataLayoutControl component.
If I use a GridControl the objects get saved. If I use the DataLayoutControl (which shows them individually) they do not get saved ...
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;
...
1
vote
3answers
364 views
Best strategy for retrieving large dynamically-specified tables on an ASP.NET page
Looking for a bit of advice on how to optimise one of our projects. We have a ASP.NET/C# system that retrieves data from a SQL2008 data and presents it on a DevExpress ASPxGridView. The data that's ...
0
votes
2answers
47 views
devexpress xpo vs BLL-DAL approach for report pages
We have just started a web project. Sql tables of the project is expected to be large tables with millions of records. And web application will usually report the data to the users. That means web ...
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 ...
0
votes
1answer
35 views
Duplicate mapping to column 'CustomerID' in class 'xCustomers'
I get the error Duplicate mapping to column 'CustomerID' in class 'xCustomers' in the following class, but i do not know what am i doing terribly wrong.
Public Class xCustomers
Inherits ...
0
votes
1answer
102 views
Resolving a DevExpress.Xpo.Exceptions.SessionMixingException
I'm adding an object to another object like so:
Foo foo = new Foo();
AnotherClass.bar.add(foo); // bar is getting assigned with dependency injection in AnotherClass
This causes a ...
0
votes
0answers
163 views
How do I have to use Devexpress XPO in PRISM modular application?
I'm working on a project with 20+ Modules with the following Technics:
WPF 4.0 , PRISM 4 , Unity 2.0 , MVVM Light , and Devexpress XPO as and ORM
I have no idea how to plane to use a XPO Session in ...
0
votes
1answer
244 views
DevExpress XPO wrapping existing table relationships
I'm experimenting with XPO and attempting to wrapper some existing tables. Does anyone have experience with doing this? The problem I'm running into is determining how XPO determines the names of the ...
0
votes
1answer
140 views
Creating Web-service for modifying XPO objects by timer
I have several clients that create new objects. When new object is created I need to start a timer that will change some object properties when time is elapsed (each object can be visible only for ...
0
votes
1answer
126 views
sharing XPObject object between threads
I am evaluating XPO, so far so good, really like it.
I have a background thread do monitoring a directory, when it find a new file is added it parse the file name, and store this object to datastore ...