Skip to content

Commit d60e840

Browse files
committed
fix links
1 parent 3ecbf84 commit d60e840

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

src/wwwroot/gfm/apps/02.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,18 +127,18 @@ <h3>
127127
<li>Otherwise by default performs a "string equality" search where columns are casted and compared as strings</li>
128128
</ul>
129129
<p>Here's the filtered list used in the above screenshot:</p>
130-
<p><a href="http://sharpdata.netcore.io/db/main/Order?format=json&amp;Id=%3E10200&amp;CustomerId=V%25&amp;Freight=%3C%3D30&amp;OrderDate=%3E1997-01-01&amp;take=100" rel="nofollow">/db/main/Order?Id=&gt;10200&amp;CustomerId=V%&amp;Freight=&lt;=30&amp;OrderDate=&gt;1997-01-01</a></p>
130+
<p><a href="http://sharpdata.netcore.io/db/northwind/Order?format=json&amp;Id=%3E10200&amp;CustomerId=V%25&amp;Freight=%3C%3D30&amp;OrderDate=%3E1997-01-01&amp;take=100" rel="nofollow">/db/northwind/Order?Id=&gt;10200&amp;CustomerId=V%&amp;Freight=&lt;=30&amp;OrderDate=&gt;1997-01-01</a></p>
131131
<h3>
132132
<a id="custom-field-selection" class="anchor" href="#custom-field-selection" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Custom Field Selection</h3>
133133
<p>The <strong>column selection</strong> icon on the top left of the results lets you query custom select columns which is specified using <code>?fields</code>:</p>
134134
<ul>
135-
<li><a href="https://sharpdata.netcore.io/db/main/Customer?format=json&amp;fields=Id%2CCompanyName%2CContactName%2CContactTitle&amp;take=100" rel="nofollow">/db/main/Customer?fields=Id,CompanyName,ContactName,ContactTitle</a></li>
135+
<li><a href="https://sharpdata.netcore.io/db/northwind/Customer?format=json&amp;fields=Id%2CCompanyName%2CContactName%2CContactTitle&amp;take=100" rel="nofollow">/db/northwind/Customer?fields=Id,CompanyName,ContactName,ContactTitle</a></li>
136136
</ul>
137137
<h3>
138138
<a id="multiple-orderbys" class="anchor" href="#multiple-orderbys" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Multiple OrderBy's</h3>
139139
<p>You can use <a href="https://docs.servicestack.net/autoquery-rdbms#multiple-orderbys" rel="nofollow">AutoQuery Syntax</a> to specify multiple Order By's:</p>
140140
<ul>
141-
<li><a href="https://sharpdata.netcore.io/db/main/Customer?format=json&amp;orderBy=-Id,CompanyName,-ContactName" rel="nofollow">/db/main/Customer?orderBy=-Id,CompanyName,-ContactName</a></li>
141+
<li><a href="https://sharpdata.netcore.io/db/northwind/Customer?format=json&amp;orderBy=-Id,CompanyName,-ContactName" rel="nofollow">/db/northwind/Customer?orderBy=-Id,CompanyName,-ContactName</a></li>
142142
</ul>
143143
<h3>
144144
<a id="paging" class="anchor" href="#paging" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Paging</h3>
@@ -147,9 +147,9 @@ <h3>
147147
<a id="format" class="anchor" href="#format" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Format</h3>
148148
<p>Use <code>?format</code> to specify which <strong>Content-Type</strong> to return the results in, e.g:</p>
149149
<ul>
150-
<li><a href="https://sharpdata.netcore.io/db/main/Customer?format=html" rel="nofollow">/db/main/Customer?format=html</a></li>
151-
<li><a href="https://sharpdata.netcore.io/db/main/Customer?format=json" rel="nofollow">/db/main/Customer?format=json</a></li>
152-
<li><a href="https://sharpdata.netcore.io/db/main/Customer?format=csv" rel="nofollow">/db/main/Customer?format=csv</a></li>
150+
<li><a href="https://sharpdata.netcore.io/db/northwind/Customer?format=html" rel="nofollow">/db/northwind/Customer?format=html</a></li>
151+
<li><a href="https://sharpdata.netcore.io/db/northwind/Customer?format=json" rel="nofollow">/db/northwind/Customer?format=json</a></li>
152+
<li><a href="https://sharpdata.netcore.io/db/northwind/Customer?format=csv" rel="nofollow">/db/northwind/Customer?format=csv</a></li>
153153
</ul>
154154
<h3>
155155
<a id="multitenancy" class="anchor" href="#multitenancy" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Multitenancy</h3>

src/wwwroot/gfm/apps/02.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,19 +143,19 @@ All query string parameter except for `db,fields,format,skip,take,orderBy` are t
143143

144144
Here's the filtered list used in the above screenshot:
145145

146-
[/db/main/Order?Id=>10200&CustomerId=V%&Freight=<=30&OrderDate=>1997-01-01](http://sharpdata.netcore.io/db/main/Order?format=json&Id=%3E10200&CustomerId=V%25&Freight=%3C%3D30&OrderDate=%3E1997-01-01&take=100)
146+
[/db/northwind/Order?Id=>10200&CustomerId=V%&Freight=<=30&OrderDate=>1997-01-01](http://sharpdata.netcore.io/db/northwind/Order?format=json&Id=%3E10200&CustomerId=V%25&Freight=%3C%3D30&OrderDate=%3E1997-01-01&take=100)
147147

148148
### Custom Field Selection
149149

150150
The **column selection** icon on the top left of the results lets you query custom select columns which is specified using `?fields`:
151151

152-
- [/db/main/Customer?fields=Id,CompanyName,ContactName,ContactTitle](https://sharpdata.netcore.io/db/main/Customer?format=json&fields=Id%2CCompanyName%2CContactName%2CContactTitle&take=100)
152+
- [/db/northwind/Customer?fields=Id,CompanyName,ContactName,ContactTitle](https://sharpdata.netcore.io/db/northwind/Customer?format=json&fields=Id%2CCompanyName%2CContactName%2CContactTitle&take=100)
153153

154154
### Multiple OrderBy's
155155

156156
You can use [AutoQuery Syntax](https://docs.servicestack.net/autoquery-rdbms#multiple-orderbys) to specify multiple Order By's:
157157

158-
- [/db/main/Customer?orderBy=-Id,CompanyName,-ContactName](https://sharpdata.netcore.io/db/main/Customer?format=json&orderBy=-Id,CompanyName,-ContactName)
158+
- [/db/northwind/Customer?orderBy=-Id,CompanyName,-ContactName](https://sharpdata.netcore.io/db/northwind/Customer?format=json&orderBy=-Id,CompanyName,-ContactName)
159159

160160
### Paging
161161

@@ -165,9 +165,9 @@ Use `?skip` and `?take` to page through a result set
165165

166166
Use `?format` to specify which **Content-Type** to return the results in, e.g:
167167

168-
- [/db/main/Customer?format=html](https://sharpdata.netcore.io/db/main/Customer?format=html)
169-
- [/db/main/Customer?format=json](https://sharpdata.netcore.io/db/main/Customer?format=json)
170-
- [/db/main/Customer?format=csv](https://sharpdata.netcore.io/db/main/Customer?format=csv)
168+
- [/db/northwind/Customer?format=html](https://sharpdata.netcore.io/db/northwind/Customer?format=html)
169+
- [/db/northwind/Customer?format=json](https://sharpdata.netcore.io/db/northwind/Customer?format=json)
170+
- [/db/northwind/Customer?format=csv](https://sharpdata.netcore.io/db/northwind/Customer?format=csv)
171171

172172
### Multitenancy
173173

0 commit comments

Comments
 (0)