puschie286
puschie286
@mpetito-envative having migrations in you lib limit the application to an specific database provider. its much simpler to provide a ModelBuild function and let the application generate a migration for...
thank you for the detailed explanation - after some discussion, i agree on your points and see the benefits of having migrations in your libs. For the nx-dotnet generator, supporting...
any updates on this ? beside the attribute + icon problem, this is the last thing that keep us from including wpf application in (docker) building pipelines
for this we create two interfaces ( IAutoTimer, IManualTimer ) and timer wrapper ( AutoTimer, ManualTimer ), ``` public interface IAutoTimer : ISignaler {} public class AutoTimer : SystemTimer, IAutoTimer...
found the problem : you need to destroy all parts ( and references ), the jquery objects on the startinput my temp solution is: ``` TimePicker.prototype.destroy = function () {...
im using 3.1.0 didnt checked it with 3.0.0
@alxhub thank you very much, that was exactly what happen. im still curious why the toString method crash and why the ngFor behave different - its not much data and...
> The way you generate test data makes the key unique, hence no warning. I guess your real-life data are different and do have duplicate keys. an duplicated key is...
> Oh, the stackblitz runs Angular 17.3 while the new duplicate key check was only introduced in v18 (still RC). So the observed diff in warnings is likely due to...
the origin of the exception was a duplicated key that we could find and solve. but even in this case, the generation of the exception message should not crash /...