You can implement like this.
public IActionResult SignIn()
{
var redirectUrl = Url.Action("LoginCallback", "Account");
var properties = new AuthenticationProperties { RedirectUri = redirectUrl };
return Challenge(properties, OpenIdConnectDefaults.AuthenticationScheme);
}