python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
IAsyncEnumerable<T> in ASP.NET Core, deploying on iis is not supported streaming behaviour?
[Route("api/[controller]")]
[ApiController]
public class ValuesController : ControllerBase
{
[HttpGet]
public IAsyncEnumerable<int> Get()
{
return FetchItems();
...
Jin Lyu
Votes: 0
Answers: 1
How to setup .NET 6 with Dapper Identity and Discord Login
I'm trying to figure out how to setup a login via Discord Oauth2 while using Dapper as my ORM.
Microsoft has a guide here that I have followed to setup all of my stores. I infact can call CreateAsync(...

Bagzli
Votes: 0
Answers: 1
Result is [ null ] insted of [ ] after changing from JSON.NET to System.Text.Json in ASP.NET Core 6
I am working an ASP.NET Core 6.0 project.
I wrote a query which is related to this property:
public List<Holiday> Holidays { get; set; }
It returns
"holidays": [ null ],
This happens...
hanushi
Votes: 0
Answers: 0
migration .Net Framework 4.8 to .Net Core 6 - Could not load file or assembly 'System.IdentityModel, Version=4.0.0.0
I just migrated My project from the .net framework 4.8 to the .Net core 6
My Projects have a lot of dependencies like Owin, IdentityServer3, and ...
Finally, my solution builds successfully now, but w...
amir
Votes: 0
Answers: 0