Skip to content

Instantly share code, notes, and snippets.

@kleberksms
Last active May 30, 2018 21:08
Show Gist options
  • Save kleberksms/ee435bd35276715011be539896b5215c to your computer and use it in GitHub Desktop.
Save kleberksms/ee435bd35276715011be539896b5215c to your computer and use it in GitHub Desktop.
DataBinding
<p class="note @((Foo == "Bar" ? "highlight" : ""))">This is a note</p>
<!-- OR -->
<p class="note @((Foo == Bar ? "highlight" : ""))">This is a note</p>
@functions {
private string Foo { get; set; } = "Bar";
private string Bar { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment