maliming

Results 526 comments of maliming

hi You can create your own `MyAbpController and MyApplicationService`, which include the `ICurrentProject` and then inherit them in your services.

hi Because the `connection string` may contain spaces and other characters, double quotes are needed.

Add `ConfigureByConvention();` ```cs builder.Entity(c => { c.ConfigureByConvention(); c.ToTable("Categories"); c.Property(x => x.Name).HasMaxLength(CategoryConst.MaxNameLength).IsRequired(); c.HasIndex(x => x.Name); }); builder.Entity(p => { p.ConfigureByConvention(); p.ToTable("Products"); p.Property(x => x.Name).HasMaxLength(ProductConst.MaxNameLength).IsRequired(); p.HasIndex(x => x.Name).IsUnique(); p.HasOne(x => x.Category).WithMany().HasForeignKey(x =>...

`1q2w3E*` is the password of a user. `1q2w3e*` is the `ClientSecret` of an oAuth's client/application.

hi You can enable `Debug` logs to see what's happened. ``` Log.Logger = new LoggerConfiguration() .MinimumLevel.Debug() .Enrich.FromLogContext() .WriteTo.Async(c => c.File("Logs/logs.txt")) .WriteTo.Async(c => c.Console()) .CreateLogger(); ```

hi > I've conducted some local testing of our application to further investigate the performance issue. Can you test the template project with your steps? also, share your steps.

Thanks @plukic > I tested this in my project where I have more than 35 tables, and I created a test service where I injected all these tables as IRepository....

hi Its better to create the `md` and add it to menu file in your PR.