silverstripe-framework/docs/en/02_Developer_Guides/00_Model/index.md
Aaron Carlino 54e7223d98 NEW: Docs rebuild for compliance with Gatsby (#9316)
* Rewrite callout blocks

* Rewrite frontmatter

* Replace missing frontmatter

* Replace note callouts

* Fix icons

* Hide children

* Tidy up code blocks

* Replace legacy code blocks with fenced
2019-11-20 10:44:53 +13:00

691 B

title summary introduction icon
Model and Databases Learn how SilverStripe manages database tables, ways to query your database and how to publish data. This guide will cover how to create and manipulate data within SilverStripe and how to use the ORM (Object Relational Model) to query data. database

In SilverStripe, application data will be represented by a [api:DataObject] class. A DataObject subclass defines the data columns, relationships and properties of a particular data record. For example, [api:Member] is a DataObject which stores information about a person, CMS user or mail subscriber.

[CHILDREN Exclude="How_tos"]

How to's

[CHILDREN Folder="How_Tos"]