기업을 위한 IT 전문 파트너
  • eXpress Persistent Objects
  • SNS공유 페이스북 트위터
eXpress Persistent Objects
  • eXpress Persistent Objects
  • EXpress Persistent Objects for .NET or XPO

  • 제조사 : DevExpress Brand Shop
  • 제품번호 : 4510
유사 기능 제품
개발도구/컴파일러
 
가격정보
P# OS 언어 제품구분 버전 소비자가 공급가 견적 주문
본 제품은 상담 후 가격 확인이 가능한 제품입니다. 견적요청 및 제품문의를 클릭해주시기 바랍니다.
    위 가격은 부가세를 포함한 가격 입니다.
  • 견적 및 주문을 진행하시려면 로그인이 필요합니다.
  • ‘주문’이 활성화 되어 있지 않은 제품은 ‘견적요청’을 해주시면 현 시점 최적가로 제공 해드립니다.
요약정보

EXpress Persistent Objects for .NET or XPO

represents a powerful bridge between the true object world and relational databases. It gives developers the freedom to build true business objects without having to deal with the tedious complexities of mapping them to database tables. eXpress Persistent Objects for .NET completely abstracts the database layer from the developer, keeping them completely in the object-oriented realm. With XPO, you can build applications that are compatible with multiple database systems (currently we support MS Access, MS SQL Server, MySQL, Oracle, PostgreSql, Firebird, PervasiveSQL, VistaDB, SQL Anywhere, Advantage, DB2 and Sybase) without having to make ANY changes to your code.


상세정보

eXpress Persistent Objects for .NET or XPO represents a powerful bridge between the true object world and relational databases. It gives developers the freedom to build true business objects without having to deal with the tedious complexities of mapping them to database tables. eXpress Persistent Objects for .NET completely abstracts the database layer from the developer, keeping them completely in the object-oriented realm. With XPO, you can build applications that are compatible with multiple database systems (currently we support MS Access, MS SQL Server, MySQL, Oracle, PostgreSql, Firebird, PervasiveSQL, VistaDB, SQL Anywhere, Advantage, DB2 and Sybase) without having to make ANY changes to your code.

With eXpress Persistent Objects, you never again have to deal with table mapping - all you need to do is to define persistent object classes, and XPO will generate your database for them automatically. It will transparently handle relationships between classes as well as inheritance structures. But you never sacrifice ease-of-use for flexibility. If you ever need more control over the O/R mapping process, you can simply use our built-in attributes to provide additional mapping information to XPO and thus address most technical requirements.

?

Below is a list of the main features of the eXpress Persistent Objects for .NET.

  • Transparent and Controllable Object-Relational Mapping System - By using .NET Reflection and attributes introduced by XPO, XPO is able to map the properties of business objects to relational database tables. Object associations (one-to-one, one-to-many, many-to-many), aggregation and inheritance are all FULLY supported.
  • Bindable and Pageable Object Collections - With XPO.NET, you can retrieve collections of persistent objects, paginate and bind them to UI controls with ease.
  • Object Queries - You can specify retrieval, sorting and filtering criteria using straightforward object syntax.
  • The XPView class can query arbitrary combinations of calculated and aggregated values from the object model. It can used with data binding, providing a good alternative for situations where memory consumption and speed need to be optimized.
  • Enhanced query support includes calculated conditions that can be used with the XPCollection as well as XPView.
  • Full Visual Studio 2005 and .NET 2 support includes the availability of a generic XPCollection<T> and corresponding generic helper methods like GetCollection<T>
  • Advanced Support for Existing Database Schemas - XPBaseObject can serve as a base class for persistent objects, allowing you to map such objects to an existing database without having to make any modifications whatsoever to the database's structure.
  • A shareable stateless data access layer (DAL) speeds up the process of session creation considerably, allowing for better performance and simpler implementations in ASP.NET and other scenarios where short cache lifespans are desirable.
  • Comprehensive Database Generation and Updates - XPO allows you to generate or update database tables based on the definitions of your persistent object classes.
  • Support for various DB engines - XPO provides built-in support for MS Access and MS SQL Server databases as well as for MySQL, Oracle, PostgreSql, Firebird, PervasiveSQL, VistaDB, SQL Anywhere, Advantage, DB2 and Sybase. This means you can target these database engines without having to make any modifications to your code.
  • XML Model with Custom Attributes - XPO.NET uses an abstract metadata model instead of .NET Reflection. .NET Reflection metadata can be obtained by means of the ReflectionDictionary which is used by default. The XPDictionary class and all its descendants including the ReflectionDictionary have the ability to supply XML data specifying mapping information and custom attributes for modifying the data accumulated via .NET Reflection.
  • Dynamic runtime extension of persistent classes provides for additional flexibility in the object model.
  • Session-less persistent classes don't need to be derived from the XPObject to be handled by XPO.
  • The XpoDefault class stores global settings like a connection string or a shared DAL and simplifies the implementation of multi-session applications.
  • Advanced Criteria System - A wide set of criteria operators allow you to build complex criteria representing the logical expressions used to retrieve objects from the database, including the aggregate operations.
  • Delayed Loading for Object Properties - With XPO.NET, you can improve application performance by delaying the loading of particular properties, such as those which are used rarely or contain large amounts of data.
  • Transaction Support - XPO.NET provides transaction support the same way as Microsoft ADO.NET does. You can easily Begin a transaction, then Commit or Roll it back using appropriate Session methods.
  • Using the Unit of Work principle, XPO can now perform semi-automatic change tracking. The only requirement for this is that your property setters call OnChanged().
  • Nested units of work are now supported. These encapsulate certain operational blocks and can be committed or rolled back together.
  • Optimistic Locking - Optimistic concurrency is supported for updates ("First in wins" rule).
  • Custom Oid - Key attribute has been added. A class property - of any supported data type - annotated with this attribute is treated as a key. Key auto-generation is supported for Guid and Int32 data types.
  • Precise Definition of the Column Type the Persistent Property or Field is Mapped to - The DbTypeAttribute can be used to designate a provider-specific database type for the column which the persistent property or field is mapped to.
  • Explicit Declaration of a String Field of Unlimited Size - Unlimited Text/Memo field size can be defined by specifying the SizeAttribute.Unlimited constant.
  • Custom Type Converters - Transparent conversions of persistent property values from/to database values can be implemented using type converters, for example for security purposes.
  • Persistent Class Template - Provides the easiest and fastest way to add persistent classes to your project.
  • C# Builder, Borland Delphi .NET, Mono Support - XPO is fully compatible with the Borland C# Builder, Borland Delphi.NET and the Mono C# compiler.
  • Session, XPCollection, XPPageSelector Components - These components allow you to set the DataSource and bind them to any visual component such as a grid control, edit control or any other data-aware controls at design time.
  • IBindingList Collection Behavior - The XPCollection supports the IBindingList and you can add or remove collection items via this interface at run time.
  • Custom Constraints and Indexes - Advanced metadata attributes allow you to specify database constraints and indexes for persistent properties or fields. By handling the SchemaInit event of the Session object you can enforce any custom database modifications.
  • IEditableObject XPBaseObject Behavior - XPBaseObject supports IEditableObject and you can control the object's changes via this interface.
  • Advanced Event System - In order to perform custom actions during object, collection and session manipulations, you can employ the events raised when the session / transaction state or collection contents are changed or the underlying database metadata for the object is about to be modified.
  • Database Integrity Validation - XPO keeps the underlying database up-to-date and integrated automatically, unless you choose to disable this functionality.
eXpressPersistentObjects, DeveloperExpress, 디벨로퍼익스프레스,Developer Express,DevExpress
견적요청
인터파크 큐브릿지 IT영업부
자세히보기
  • Office 365
  • CCT
TOP