desarrollo03TR

Results 5 comments of desarrollo03TR

I'm trying to add filter support using Advanced GridView (https://github.com/davidegironi/advanceddatagridview) but it is not working.

@hadi77ir .net core is not an "improved" version of .net framework, it is open source, but it is not the full .net framework. There is not an "ideal" framework for...

I did some changes to the MonadAsyncMethodBuilder class and now I can use Task, I guess that for Nullable I need to create a new class. Also, I can use:...

For example, with this class: public class Person { [Browsable(false)] public string FirstName { get; set; } [Browsable(false)] public string LastName {get;set;} [DisplayName("Full Name")] public string FullName => $"{FirstName} {LastName}";...

A workaround that I found is to use nullable types. int? insteand int, bool? insteand bool.