Tagged Questions
XPO is a DevExpress ORM library for .NET.
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 ...
2
votes
3answers
263 views
.NET ORM that supports multithreading better?
I know questions about .net ORM have been asked thousands of times, but i want to know which ORM is easy to work with in a multithreaded environment. Commercial or Free are both welcomed.
Currently, ...
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 ...
1
vote
1answer
101 views
How to keep a single XPO across different versions?
I want to have one XPO, and have the same code work on AX4 and AX5. I am looking for a precompiler directive to check the version, sort of like:
#if define AX4
thisCode(...)
#else
thatCode(...)
...
0
votes
2answers
46 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
2answers
124 views
Dynamic LINQ. No property or field 'FieldName' exists in type 'ClassName'
My LINQ query is as follows
Dim Query = From t In New XPQuery(Of xUser)(Xpo.Session.DefaultSession)
.Where("Name=John").Select("new (Name as FirstName)")
Unfortunately i get the error No property ...
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
100 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
242 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
124 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 ...
0
votes
2answers
737 views
import and compile axapta 2009 xpo by commandline
i'm looking for a way to import an existing xpo-export via command-line into ax2009 aot and afterwards compile just this imported xpo. google tells me how to compile the whole aot by commandline, ...