Standa Lukeš
Standa Lukeš
I think that sharing some little snippet that solves the problem would be better than a package as it will let people not using EF change some detail and make...
In EF Core, the IQueryable implements IAsyncEnumerable which is in the standard. This means that we can actually implement this method (at least for netstandard2.1 version)
Ok, it's not that easy since we also need to call the `.Count()` method, which does not have an async variant in netstandard2.1 :|
No we don't have DotVVM vs MVC comparison for a few reasons: * Noone wanted to write a significantly complicated application in both DotVVM and MVC * It really depends...
I'm not sure if I understand correctly what do you mean, IMO the debugger breaks more often on async methods, is it really caused by the async? And even if...
I agree that VS Extension could disable breaking on this exceptions on a first launch, so you can turn it on later, if you want. @Mylan719 ? On Tue, 2017-10-10...
one more: * Check that `DotvvmProperty.Register` is referencing the current type. This is a common error that is super annoying to debug.
I actually think that we should have direct support for file downloads and don't do that using a redirect. Even on a first page load, we should support downloading a...
> Is there a way to do it without a redirect? By putting a piece of JS into the page :)
Sure, you can make link to that file, and navigate there :) But it does not unload the page, so it's almost a JS API, although it's a hack...