Looking at Q368491 A solution was posted on the bottom using a custom attribute.
The MySession class inherits from DevExpress.Xpo.Session and overrides the GetPropertiesListForUpdateInsert method so that when a
[IgnoreInsertUpdate]
field/property attribute is detected, the field or column in the update/insert statement would be omitted.
I would like to know where In the business object I could use MySession instead of the default session below:
C#public partial class test
{
public test(Session session) : base(session) { }
}