Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I'm trying to make a connection with node.js and when trying to use the .map it informs that the property does not exist, but the imports description here are correct
In Asp.net Core v.2+ you don't have to inject HttpContext or something. Acces User just like this:
public IActionResult GetMe() { return Ok(User.Identity.Name); }