46 questions
0
votes
1
answer
73
views
Using Blazor Web App with ASP.NET Zero Framework Instead of Angular or MVC
Is it possible (and recommended) to use Blazor as the front-end in ASP.NET Zero?
Has anyone successfully integrated Blazor web assembly with ASP.NET Zero backend, and if so, what approach did you take?...
0
votes
0
answers
105
views
Is 3 seconds per integration test normal?
In my current job, we use the ASP.NET Zero framework (based on ABP, I think) in a C# / ASP.NET MVC context. I've never used it before.
Integration tests inherit from AbpIntegratedTestBase. We've ...
0
votes
1
answer
32
views
<account-logo> tag helper emits invalid HTML
Using this tag:
<vc:account-logo skin='@(theme.BaseSettings.Layout.DarkMode ? "dark": "light")'></vc:account-logo>
I get this HTML:
<img src="/Common/Images/my-...
0
votes
1
answer
83
views
Where is the documentation that describes how to code a select element for ASP NET Core MVC?
I spent several hours getting a <select> element to work correctly, and in the end, the solution came from trying random stuff, rather than from anything I could find on the internet.
I was able ...
0
votes
1
answer
1k
views
How to fix "The active test run was aborted. Reason: Test host process crashed" when debugging unit tests for ASPNET Zero project
When I "Run" a unit test, it works fine. When I "Debug", the test run always aborts, and I always see this in the Output window:
========== Starting test run ==========
[xUnit.net ...
2
votes
0
answers
2k
views
MiniExcel - How to use Dynamic columns in combination with a Custom template?
I'm using MiniExcel in a .NET (ASP.NET Zero) Project to generate Excel files for my frontend Tables.
The Users can change which columns are shown and in what order for each Table, so I needed to use ...
0
votes
1
answer
505
views
Why Published Test Results link is not working?
My pipeline runs, detects my test results, and claims to upload them. However, the link gives me a 404. This is the first time I've tried to use this task in the pipeline. According to the Microsoft ...
1
vote
1
answer
469
views
Can we modify AbpUserConfiguration/GetAll or reduce the response time by any means
In my application, the response time for the API call - AbpUserConfiguration/GetAll is around 3-7 seconds, not just the first time. This API is called when the user logs in. Is there any way that I ...
0
votes
0
answers
389
views
AbpSession tenantid is not getting set
I am using aspnetzero for my development in .net and angular.
When I enable the multitenancy in my project than abpsession tenantid is not getting set. It is null.
If I disable it than host tenant id ...
0
votes
0
answers
83
views
ASPNET Zero Xamarin.forms IOS Error "System.Exception: Set configuration before using remote localization!"
How can I resolve the "ComponentActivatorException" error in ASP.NET Zero when running my Xamarin.Forms iOS app, which shows the following message: "System.Exception: Set configuration ...
2
votes
1
answer
116
views
Delegating user related topics to another Asp Net Zero project
I'm wondering and trying to achieve the following scenario with Asp Net Zero 12.0.0 - ASP.NET CORE & Angular:
A project that keeps all the users, permissions, roles, user groups, charts and ...
0
votes
1
answer
810
views
What is the problem while i am trying to run Asp Net BoilerPlate Project ABP
I have found out a video about first configurations and run the ABP project. I have applied instructions of this video step by step but there are some problems on running.
For example video created ...
0
votes
0
answers
948
views
Error loading discovery document and blocked by CORS policy
I have already spent almost week on this issue and researched the various similar issue and applied but nothing works. Here is the detail of issue.
I am using the npm package "angular-oauth2-oidc ...
1
vote
1
answer
470
views
service.CreateAsync() always returns Id as 0 in ABP
I'm using generated entities from ABP Suite. Sometimes I need Id of inserted entity. But when CreateAsync method is called it returns 0. It internally calls InsertAsync and not InsertAndGetIdAsync. So ...
0
votes
1
answer
483
views
How should I create a class with functions to be shared across multiple application services with aspnetboilerplate?
I have code/common functionality that needs to be re-used in multiple app services (i.e. say a simple lookup function). I am looking to create a Helper class that isn't really an API, just something ...