47 questions
0
votes
1
answer
61
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
1
answer
29
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
911
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 ...
0
votes
1
answer
489
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 ...
0
votes
0
answers
380
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 ...
2
votes
1
answer
113
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
0
answers
921
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 ...
0
votes
1
answer
478
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 ...
0
votes
0
answers
85
views
How can I change MaxValueLength of NewValue and OriginalValue in EntityPropertyChange.cs?
I am using aspnetzero and I have enabled entity history. Maxvaluelength of NewValue and OriginalValue is 512 chars in AbpEntityPropertyChanges table.
How can I change MaxValueLength of NewValue and ...
0
votes
2
answers
998
views
Ending session on browser close throws Exception
I am working on an Asp.net zero project with frontend in angular and backend in Asp.net core with database in MS SQL Server. I was working on a functionality by which I can call logout function on ...
1
vote
1
answer
1k
views
app is not defined at client in ASP.NET Zero
I started building an application using ASP.NET Boilerplate, and as I am getting familiar with the framework I am considering a move to the paid ASP.NET Zero version. I would like to assess the effort ...
0
votes
1
answer
447
views
ASP.NET Zero (ABP) call simple action in controller
I JUST want to call simple method from a controller but on calling, I get ERR_CONNECTION_RESET.
As I now this error is for services but I haven't any service for this controller or method!
I call ...
0
votes
0
answers
494
views
Aspnetboilerplate - Globalization and localization of Data annotations of entities
I'm using the aspnetboilerplate framework and would like to translate the data model annotations.
I added the code for translation in: Project.Web.Mvc/Startup/Startup.cs
services.AddLocalization(
...
-1
votes
1
answer
342
views
aspnetzero prevent soft delete if row is referenced in another table
I am Using ASPNETZero in my Application Where the Entities are Soft Deleted with the help of the below Code Snippet.
var query = Repository.GetAll()
.Where("Id == @0", input.Id)
...
0
votes
1
answer
1k
views
nswag error in .NET 5.0, Process is terminating due to StackOverflowException
I am using aspnetzero framework. After upgrading .Net core to .Net5, I am facing an issue when running refresh.bat. It's throwing below mentioned error
Executing file '..\EMA.Web.Host\nswag\service....
0
votes
1
answer
247
views
Use multitenancy or custom solutions
It is not an issue but a question or advice on what is better approach given the concepts of abp. In my case there are different kind of roles that interact with some core entities. Let say.
Entities:
...
0
votes
1
answer
751
views
Multi-Tenancy in ABP
I'm considering using ABP / ASPNetZero for my SaaS application.
I know that it supports multi-tenancy, but it appears like the tenant setup is manual.
I would like to create an online app that when a ...
1
vote
2
answers
442
views
AspNetZero V8.0 - Debugger ends immediately
I just started coding with AspNetZero V8.0 solution. I purchased this version a couple of years ago. I had kept the raw downloaded solution in a GIT Repo without any changes.
Recently I downloaded the ...
0
votes
1
answer
574
views
Send DevExterme LoadOptions to aspnetzero
As mentioned in following document
Developing-Step-By-Step-Angular-DevExtreme-Using-GetPeople-Method-from-Angular
this.dataSource = new CustomStore({
key: "id",
load:...
1
vote
1
answer
163
views
Not getting values from linq query in aspnetzero framework
I am executing following query. I am doing this in aspnetzero framework and doing this in UserAppService.cs file.
var rt = _dbContextProvider.GetDbContext().Users
.Where(e => e....
-1
votes
1
answer
181
views
style problem when adding entity with RAD power tools
all run ok, but when add new view .. it show like the image
i did use yarn & npm run create-bundles.
I did try with modal or without modal.
0
votes
0
answers
477
views
Aspnet Zero Time on client side is incorrect when daylight saving is on
In AspNet Zero Core + Angular Project. I have Set Clock Provider to UTC Clock.Provider = ClockProviders.Utc; in Startup.cs
as stated in the document which causes timezone selection in settings for ...
0
votes
0
answers
188
views
Switch role wise screen in asp net zero, if one user has multiple roles
I have checked asp net-zero document for role-wise change display screen based on roles permissions but in asp net-zero, A user can have zero or more roles. If a user has more than one role, the user ...
0
votes
1
answer
648
views
Insert value '0' on identity column and let it auto-generate an identity
I'm using an application called AspNetZero (much like AspNet Boilerplate) and I created a migration script in this application.
The migration script looks like this:
migrationBuilder.CreateTable(
...