Zoltán Tamási
Zoltán Tamási
It seems like decompiling an expression like this results loosing the enum type of the constant `TestEnum.First`, and having only an `Int32` value of `1`. ``` public enum TestEnum {...
This scenario fails to decompile with version `0.20`. ``` public class Test { public string A { get; set; } } public class Test2 { public List Colleciton { get;...
This PR contains several minor improvements related to the `event` and `submit` bindings. - Refactored the `submit` binding to reuse the `event` binding. This way some concepts can be easily...
I recently spent 1 hour of trying to debug why attribute interpolation wasn't working at all. Finally I found that I incorrectly used the `js` files from `build/output` folder (just...
First or all, thank you for this project, looks very useful. Second, sorry if this is a duplicate, I've tried to look around in the open or closed issues. ###...
There's a library called [MockQueryable](https://github.com/romantitov/MockQueryable) which supports mocking `IAsyncQueryable` instances, allowing us to write unit tests against business logic which uses EFCore queries. However, there's currently no way of catching...
Because `fastForEach` doesn't use the native `template` binding internally for rendering templates, it can lead to several issues like - Won't get any fixes related to `template` binding. - Can't...
I noticed an issue which probably exists with the original `foreach` as well. When I have a nested binding handler which would use `element.parentNode` for whatever reason, it will fail...
This change addresses #39 by extending the child binding context with a `$parentNode` property. The `$parentNode` property refers to the - not virtual - container node, which will become the...
### Describe the Bug In our EF Core data layer, in most cases enums are mapped as `string`s. So we have several classes where a member has both `[StringLength]` and...