You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To create a DevNet console project, enter the command below in the Terminal, where the argument <code>project-name</code> is any name you give to your project:
16
16
</p>
17
17
<pre><codeclass="language-shell">devnet new console --output project-name</code></pre>
Copy file name to clipboardExpand all lines: src/app/entity/relationships/relationships.component.html
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@ <h1>Relationships</h1>
11
11
A relationship describes how entities are associated with each other, represented by a referential constraint that defines which entity is the principal or dependent role in the relationship, and there are many kinds of entity relationships, such as one-to-one, one-to-many, many-to-one, and many-to-many.
12
12
</p>
13
13
<ul>
14
-
<liclass="mb-2"><b>Dependent entity:</b> sometimes called the 'child,' is the entity that contains the foreign key, which is a reference to the primary key of the principal entity.</li>
15
-
<liclass="mb-2"><b>Principal entity:</b> sometimes called the 'parent,' is the entity that contains the primary key, which is referenced as a foreign key in the dependent entity.</li>
14
+
<liclass="mb-2"><b>Dependent entity:</b> sometimes called the "child" is the entity that contains the foreign key, which is a reference to the primary key of the principal entity.</li>
15
+
<liclass="mb-2"><b>Principal entity:</b> sometimes called the "parent" is the entity that contains the primary key, which is referenced as a foreign key in the dependent entity.</li>
Copy file name to clipboardExpand all lines: src/app/entity/start/start.component.html
+20-20Lines changed: 20 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ <h4>Entity Type</h4>
76
76
</li>
77
77
</ul>
78
78
<p>
79
-
The following code example is the entity class <code>Application\Models\Post</code> used in the previous context, and it represents the <b>Post</b> table in the database where the properties represent the columns of that table.
79
+
The following code example is the entity class <code>Application\Models\Post</code> used in the previous context, and it represents the <b>"Post"</b> table in the database where the properties represent the columns of that table.
80
80
</p>
81
81
<pre><codeclass="language-php"><?php
82
82
@@ -139,50 +139,50 @@ <h3>Connecting to the Database</h3>
0 commit comments