<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="/statics/demosource/showrazor.css" />
</head>
<body>
<span class="marked">@{
var db = Database.Open("SmallBakery");
var query = "SELECT * FROM Product";
}</span>
<html>
<body>
<h1>Small Bakery Products</h1>
<table border="1" width="100%">
<tr>
<th>Id</th>
<th>Product</th>
<th>Description</th>
<th>Price</th>
</tr>
<span class="marked">@foreach(var row in db.Query(query))
{</span>
<tr>
<td><span class="marked">@row.Id</span></td>
<td><span class="marked">@row.Name</span></td>
<td><span class="marked">@row.Description</span></td>
<td align="right"><span class="marked">@row.Price</span></td>
</tr>
<span class="marked">}</span>
</table>
</body>
</html>
</body>
</html>