test
Actual version
We are migrating from AspNetZero to Abp.io and we are developing a "monolithic" ERP type solution. We want to follow DDD approach and the solution will be developed with Abp.io Commercial : Blazore Web Assembly and EF on SQL Server. To simplify the deployment we would like to use the Blazore WASM Hosted configuration as reported https://community.abp.io/posts/blazor-webassembly-asp.net-core-hosted-zbjvgrc9 Being the article written for Abp.io 6 we wanted to know if we could have problems with .NET 7 and Abp.io 7 ? Will the Blazore WASM Hosted version always be supported by you and maybe integrated in the solutions managed by ABP CLI?
Thank you Roberto
BookExcelDownloadDto.cs:
public class BookExcelDownloadDto
{
public string DownloadToken { get; set; } = null!;
public string? FilterText { get; set; }
public string? Title { get; set; }
public DateTime? PublishDateMin { get; set; }
public DateTime? PublishDateMax { get; set; }
public bool? InInventory { get; set; }
public BookExcelDownloadDto()
{
}
}
Books.razor.cs:
public partial class Books
{
// OTHER PAGE CODE HERE
private async Task DownloadAsExcelAsync()
{
var token = (await BooksAppService.GetDownloadTokenAsync()).Token;
var remoteService = await RemoteServiceConfigurationProvider.GetConfigurationOrDefaultOrNullAsync("ExcelTest") ??
await RemoteServiceConfigurationProvider.GetConfigurationOrDefaultOrNullAsync("Default");
NavigationManager.NavigateTo($"{remoteService?.BaseUrl.EnsureEndsWith('/') ?? string.Empty}api/app/books/as-excel-file?DownloadToken={token}&FilterText={Filter.FilterText}", forceLoad: true);
}
// OTHER PAGE CODE HERE
}
Steps to reproduce the issue:
public static class Level
{
public const string FirstLevel = GroupName + ".FirstLevel";
public const string SecondLevel = FirstLevel + ".SecondLevel";
public const string ThirdLevel = SecondLevel + ".ThirdLevel";
}
var firstLevelPermission = myGroup.AddPermission(PermissionsIssuePermissions.Level.FirstLevel, L("Permission:FirstLevel"));
var secondLevelPermission = firstLevelPermission.AddChild(PermissionsIssuePermissions.Level.SecondLevel, L("Permission:SecondLevel"));
var thirdLevelPermission = secondLevelPermission.AddChild(PermissionsIssuePermissions.Level.ThirdLevel, L("Permission:ThirdLevel"));
For LeptonX Theme for Blazor WASM, is it possible to have the right toolbar at the top while keeping the main menu in the left sidebar (to mimic the old Lepton Theme layout)?
We would like to have the same layout and features of ASP.NET ZERO, with the notification component (having the unread notification indicator) and the message component (with the unread message icon) inside the toolbar
By clicking on the notification icon we would like to have a component like the one present in aspnet zero. How could we implement these features (including the notification service inside that)?
We would also like the chat UI to replicate the one present in ASP.NET ZERO, therefore a disappearing chat on the right side. Is it possible and how?
This is due to the filters not getting encoded when the excel api is called.
If you press the "register" button it will create a new user, this behavior is not correct because it should only let you login if you already have a user in the application, otherwise it should stop you from registering because of the "self registration" setting.
Description The popup shown with the validations of the form that contains more than one error is displayed in a single line instead of multiple lines.
Reproduction Steps Create a form with inputs and make validations on it
Expected behavior The details of the validation should be multiline
Actual behavior It's displaying in a single line even if it has more than 1 validation
The request is similar to this Issue (but I use blazor WASM instead of MVC): https://github.com/abpframework/abp/issues/19274
#region test InsertMany
var myBooks = new List< Book >();
for (var i = 0; i < 12000; i++)
{
myBooks.Add(new Book(i.ToString(),$"Title-{i}"));
}
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
await _bookRepository.InsertManyAsync(myBooks, true);
stopWatch.Stop();
TimeSpan ts = stopWatch.Elapsed;
Console.WriteLine(ts);
#endregion
It takes 60 times longer !!!
We use InsertMany in import jobs and execution times have now gone from a few seconds to many minutes and those that used to take a few minutes now take hours.
We cannot upgrade to 8.1.0 stable because it would block the application in production.
From the release logs there is no evidence of changes in this area.
What has changed?