This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.EntityFrameworkCore; | |
using System; | |
using System.Linq; | |
namespace ConsoleApp1 | |
{ | |
public class TestModel | |
{ | |
public int Id { get; set; } | |
public string Name { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@page "/" | |
<h1>Blazor OnClick Callback Argument Behavior</h1> | |
<div class="row"> | |
<div class="col-md-12"> | |
Working | |
</div> | |
</div> | |
<div class="row"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2016, Alexander Hass | |
# http://www.hass.de/content/setup-your-iis-ssl-perfect-forward-secrecy-and-tls-12 | |
# | |
# Version 1.7 | |
# - Windows Version compare failed. Get-CimInstance requires Windows 2012 or later. | |
# Version 1.6 | |
# - OS version detection for cipher suites order. | |
# Version 1.5 | |
# - Enabled ECDH and more secure hash functions and reorderd cipher list. | |
# - Added Client setting for all ciphers. |