@model Razor.Models.Product @{ ViewBag.Title = "DemoExpression"; }
Property | Value |
---|---|
Name | @Model.Name |
Price | @Model.Price |
Stock Level | @switch ((int)ViewBag.ProductCount) { case 0: @: Out of Stock break; case 1: Low Stock (@ViewBag.ProductCount) break; case 2: @ViewBag.ProductCount break; } |