Berin Iwlew

Results 20 issues of Berin Iwlew

I'm checking in to using Azure SQL Database, and everything seems to be working well so far. There is an option, however, that I must enable when the db context...

feature
pull request candidate
effort-lg

I'm seeing quite a few instances where the modifiers have an inconsistent declaration order. For example: `public override async Task ProcessAsync(TagHelperContext context, TagHelperOutput output)` should be `public async override Task...

enhancement

For example: ``` using (var uow = _unitOfWorkManager.Reserve(UnitOfWork.UnitOfWorkReservationName)) { await next(context); await uow.CompleteAsync(context.RequestAborted); } ``` Can be converted to: ``` using var uow = _unitOfWorkManager.Reserve(UnitOfWork.UnitOfWorkReservationName); await next(context); await uow.CompleteAsync(context.RequestAborted); ```...

discussion

Check the ExtensionProperties.razor file in the Volo.Abp.BlazoriseUI project. `__builder` is incorrectly referenced, it should be `builder`

abp-framework

**ABP Commerical/CLI 6.0.0-rc.1**. Blazor WebAssembly EF Core/Postgres The docker-compose.yml is malformed when you have a Blazor project. I should note that I used ABP Suite to generate this initial solution....

**ABP Commerical/CLI 6.0.0-rc.1**. Blazor WebAssembly EF Core/Postgres Steps to reproduce: 1. Create 6.0.0-rc.1 prerelease solution using ABP Suite 2. Note etc/docker/docker-compose.yml - it contains references to compose the IdentityServer project,...

**ABP Commerical/CLI 6.0.0-rc.1**. Blazor WebAssembly EF Core/Postgres Steps to reproduce: 1. Create 6.0.0-rc.1 prerelease solution using ABP Suite 2. Note etc/docker/docker-compose.yml - it contains references to Sql Server, not the...

**ABP Commerical/CLI 6.0.0-rc.1**. Blazor WebAssembly EF Core/Postgres Steps to reproduce: 1. Create 6.0.0-rc.1 prerelease solution using ABP Suite 2. Note etc/build/build-images-locally.ps1 - it contains references to compose the IdentityServer project,...

I would like to an easy way for my existing users to be able to log in to LibreTime using their existing credentials. We're going to be using OpenID/OAuth for...

is: feature-request
status: pinned