How to: Implement a Custom Base Persistent Class 如何:实现自定义持久化基类
XAF ships with the Business Class Library that contains a number of persistent classes ready for use in your applications. All these classes derive from the BaseObject base persistent class declared in the same library. This is a recommended-to-use feature-rich persistent class. In certain scenarios though, it may not meet your requirements. In this case, you can either use one of the base persistent classes offered by XPO to implement a custom one. This topic describes the steps you need to perform to implement a custom base persistent class to ensure that it functions as expected throughout the entire eXpressApp Framework. If you do not need to implement a custom class and want to use one of the base classes offered by XPO, refer to the Base Persistent Classes help topic instead.
XAF 随业务类库一起提供,该库包含许多可供在应用程序中使用的持续类。所有这些类都派生自在同一库中声明的 BaseObject 基持久性类。这是推荐使用功能丰富的持久性类。但是,在某些情况下,它可能不符合您的要求。在这种情况下,可以使用 XPO 提供的基本持久性类之一来实现自定义类。本主题介绍实现自定义基持久性类所需的步骤,以确保它在整个 eXpressApp 框架中按预期运行。如果不需要实现自定义类,并且希望使用 XPO 提供的基础类之一,请参阅基本持久性类帮助主题。
Tip 提示
A complete sample project is available in the DevExpress Code Examples database at http://www.devexpress.com/example=E1255
完整的示例项目可在 DevExpress 代码示例数据库中找到,http://www.devexpress.com/example=E1255
.
While you can implement a custom base persistent class from scratch, it is better to reuse an exiting functionality by deriving it from one of the base classes offered by XPO. In this example we will derive the custom base class from XPCustomObject. This XPCustomObject class supports deferred deletion and optimistic concurrency control, but does not offer an auto-generated primary key property.
虽然可以从头开始实现自定义基持久性类,但最好通过从 XPO 提供的基础类之一派生退出功能来重用退出功能。在此示例中,我们将从 XPCustomObject 派生自定义基类。此 XPCustomObject 类支持延迟删除和乐观并发控制,但不提供自动生成的主键属性。
Implement the Auto-Generated Primary Key Property
实现自动生成的主键属性
If the base class you derive from does not have an auto-generated key property, you need to implement it manually. We do not recommend implementing composite or compound keys for new databases. While it is possible to design persistent classes for legacy databases with composite keys in certain scenarios, it is always better to modify the database schema to avoid this as using composite keys imposes some limitations on the default functionality. Refer to the How to create a persistent object for a database table with a compound key
如果派生的基类没有自动生成的键属性,则需要手动实现它。我们不建议为新数据库实现复合键或复合键。虽然在某些情况下可以使用复合键为旧数据库设计持久类,但最好修改数据库架构以避免这种情况,因为使用复合键会对默认功能施加一些限制。请参阅如何使用复合键为数据库表创建持久对象
KB article to learn more. The following code snippet illustrates a GUID property marked with the Key attribute specifying that XPO should auto-generate its values. Note that XPO supports automatic generation of key property values via the Key attribute for the Int32 and GUID types only.
要了解更多信息的 KB 文章。以下代码段演示了一个 GUID 属性,该属性用 Key 属性标记,指定 XPO 应自动生成其值。请注意,XPO 仅支持通过 Int32 和 GUID 类型的 Key 属性自动生成键属性值。
using System;
using System.ComponentModel;
using DevExpress.Xpo;
using DevExpress.Xpo.Metadata;
using DevExpress.ExpressApp;
//...
[NonPersistent]
public abstract class BasePersistentObject : XPCustomObject {
public BasePersistentObject(Session session) : base(session) { }
[Persistent("Oid"), Key(true), Browsable(false), MemberDesignTimeVisibility(false)]
private Guid _Oid = Guid.Empty;
[PersistentAlias(nameof(_Oid)), Browsable(false)]
public Guid Oid { get { return _Oid; } }
protected override void OnSaving() {
base.OnSaving();
if (!(Session is NestedUnitOfWork) && Session.IsNewObject(this))
_Oid = XpoDefault.NewGuid();
}
}
It does not make much sense to persist this class as it contains a single property (for the auto-generated primary key) and thus the class is marked as non-persistent. As a result, primary key columns will be created in database tables corresponding to a descendant of this class. This eliminates redundant JOIN statements from SQL queries generated by XPO, thus improving database performance. Additionally, you should override the OnSaving method in the demonstrated way to support the correct saving of new objects derived from your class and created via a nested unit of work in specific situations.
保留此类没有多大意义,因为它包含单个属性(对于自动生成的主键),因此该类被标记为非持久性。因此,将在与此类的后代对应的数据库表中创建主键列。这消除了 XPO 生成的 SQL 查询的冗余 JOIN 语句,从而提高了数据库性能。此外,应以演示的方式重写 OnSave 方法,以支持正确保存从类派生并在特定情况下通过嵌套工作单元创建的新对象。
Implement the ToString Method
实现 ToString 方法
To complete custom base persistent class implementation, override its ToString method to manage default properties. Default properties are displayed in Lookup Property Editors and take part in form caption generation. Additionally they are automatically used by the FullTextSearch Action and are displayed first in List Views. When implementing a custom base persistent class, override the ToString method to check whether or not the DefaultProperty attribute is applied to the class and return its value.
要完成自定义基持久类实现,重写其 ToString 方法以管理默认属性。默认属性显示在"查找属性编辑器"中,并参与窗体标题生成。此外,它们会自动由"完整文本搜索"操作使用,并首先显示在列表视图中。实现自定义基持久性类时,重写 ToString 方法以检查 DefaultProperty 属性是否应用于该类并返回其值。
[NonPersistent]
public abstract class BasePersistentObject : XPCustomObject {
//...
private bool isDefaultPropertyAttributeInit;
private XPMemberInfo defaultPropertyMemberInfo;
public override string ToString() {
if (!isDefaultPropertyAttributeInit) {
DefaultPropertyAttribute attrib = XafTypesInfo.Instance.FindTypeInfo(
GetType()).FindAttribute<DefaultPropertyAttribute>();
if (attrib != null)
defaultPropertyMemberInfo = ClassInfo.FindMember(attrib.Name);
isDefaultPropertyAttributeInit = true;
}
if (defaultPropertyMemberInfo != null) {
object obj = defaultPropertyMemberInfo.GetValue(this);
if (obj != null)
return obj.ToString();
}
return base.ToString();
}
}
How to: Implement a Custom Base Persistent Class 如何:实现自定义持久化基类的更多相关文章
- C++ - 派生类访问模板基类(templatized base class)命名
派生类访问模板基类(templatized base class)命名 本文地址: http://blog.csdn.net/caroline_wendy/article/details/239936 ...
- 空基类优化empty base class optimization
1.为什么C++中不允许类的大小是0 class ZeroSizeT {}; ZeroSizeT z[10]; &z[i] - &z[j]; 一般是用两个地址之间的字节数除以类型大小而 ...
- How to implement a custom type for NHibernate property
http://blog.miraclespain.com/archive/2008/Mar-18.html <?xml version="1.0" encoding=&quo ...
- [Angular] Implement a custom form component by using control value accessor
We have a form component: <label> <h3>Type</h3> <workout-type formControlName=& ...
- [Angular 8] Implement a Custom Preloading Strategy with Angular
Preloading all modules is quite an extreme approach and might not always be desirable. For instance, ...
- How to implement a custom PropertyEditor so that it supports Appearance rules provided by the ConditionalAppearance module
https://www.devexpress.com/Support/Center/Question/Details/T505528/how-to-implement-a-custom-propert ...
- Sitecore Digital Marketing System, Part 1: Creating personalized, custom content for site visitors(自定义SiteCore中的 Item的Personalize的Condition) -摘自网络
Sitecore’s Digital Marketing System (DMS) can help you personalize the content your site displays to ...
- object base基类分析
uvm_object,是所有uvm data和hierarchical class的基类,实现了copy,compare,print,record之类的函数 扩展类中必须实现create和get_ty ...
- 空基类优化—— EBCO—— empty base class optimization
完全参考自:<C++ Templates The Complete Guide>e_CN,p_281 16.2 空基类优化 最近周围有点吵,论文没看进去,随便翻了本书…… 下文没有多大意义 ...
随机推荐
- 自动列表排序.html
li:before { content: counter(chapter) ". "; counter-increment: chapter; font-weight: bold; ...
- 一条数据的HBase之旅,简明HBase入门教程3:适用场景
[摘要] 这篇文章继HBase数据模型之后,介绍HBase的适用场景,以及与一些关键场景有关的周边技术生态,最后给出了本文的示例数据 华为云上的NoSQL数据库服务CloudTable,基于Apach ...
- 关于简单的Excel多页签底层导出_电子底账导出为例(.net core)
[HttpPost] public ActionResult ExpEleAcc(string linknos) { string filenname = null; CommonResult< ...
- luogu P1976 鸡蛋饼
题目背景 Czyzoiers 都想知道小 x 为什么对鸡蛋饼情有独钟.经过一番逼问,小 x 道出了实情:因为他喜欢圆. 题目描述 最近小 x 又发现了一个关于圆的有趣的问题:在圆上有 2N 个不同的点 ...
- 制作通用framework的几点注意
一.创建framework,调成静态的framework . 二.匹配bitcode 三.增加-ObjC 在BuildSettting ->Linking->Other Linker Fl ...
- Java修炼——四种方式解析XML_SAX
四种方式解析XML:DOM JDOM DOM4J SAX 先写一个XML栗子: <?xml version="1.0" encoding="U ...
- 2019CCPC秦皇岛I题 Invoker(DP)
Invoker Time Limit: 15000/12000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total ...
- CYPRESS最新的USB3.0控制器
CYPRESS近日发布了其最新的USB3.0控制器,产品序号为CX3,主要是针对高像素摄像头方面的应用,接口支持MIPI的CSI-2,并不支持传统的基于并口的数据传输模式. MIPI(Mobile I ...
- 重排数列-Java实现(2018网易校招研发岗)
题目: 链接:https://www.nowcoder.com/questionTerminal/6c184566ecff4d3baff3536449d4a3e2 来源:牛客网 小易有一个长度为N的正 ...
- processing-python-泡泡龙
挂一个无耻搬运工:码农教程. 真的打心底里瞧不起为了蹭热度全网照抄代码的某些人. 再次此声明:代码不是python语言,求某些搬运工不要到处搬运害人. def setup(): size(600,60 ...