Skip to content

Instantly share code, notes, and snippets.

@rionmonster
Created December 23, 2015 15:22
Show Gist options
  • Save rionmonster/7a5a0237b7a3c10806b9 to your computer and use it in GitHub Desktop.
Save rionmonster/7a5a0237b7a3c10806b9 to your computer and use it in GitHub Desktop.
<select asp-for="Organization" asp-items="ViewBag.Organizations" class="form-control custom-select">
<option>Please select an Organization</option>
</select>
public async Task<IActionResult> CreateGroup()
{
ViewBag.Organizations = new SelectList(await _context.GetOrganizations(),"OrganizationGuid","Name",{hardcoded-guid here});
return View();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment