mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
6888901468
* First cut * Temporarily disable composer.json for netlify build * POC * New recursive directory query, various refinements * Fix flexbox * new styled components plugin * Apply frontmatter delimiters * Mobile styles, animation * Search * Redesign, clean up * Nuke the cache, try again * fix file casing * Remove production env file * ID headers * Move app to new repo * Add frontmatter universally * Hide children changelogs * Add how to title * New callout tags * Revert inline code block change * Replace note callouts * Fix icons * Repalce images * Fix icon * Fix image links * Use proper SQL icon
751 B
751 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 DataObject class. A DataObject
subclass defines the
data columns, relationships and properties of a particular data record. For example, 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"]