Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "niengineering"

Dear Support,

I have a ASP.NET Core + Angular application and 2 questions:

  1. is Angular version development expected to be supported and updated or there is some phase out planned?
  2. I see the usage of netstandard in Application.Shared. Is it needed in some point or can it be upgraded to a .NET 8.0?

Thank you

Question

Dear Support,

we would like to try to improve performance of our solution based on AspNetZero and trying to search the most compatible with future updates of the platform. As first part of this attempt we would like to know:

  1. if we can safely remove some dependancies from primeng libraries that are now included in main.js file so they will be included in admin modules
  2. how we can implement a "translation by module". I mean that actually the GetAll call is downloading the entire translation dictionary so it's taking time we would like to reduce splitting the translations by single modules implemented in our solution
  3. split permissions management. Actually we have a lot of permissions and the management through the standard user permission tree is very slow. Is there a way to split them or do we have to implement our own solution?

Thank you

We are trying to compile the DbContext to improve the speed in startup of our application.

We are running the command "Optimize-DbContext" on EntityFrameworkCore project and we are receiving the error "The entity type 'Edition' has a query filter configured. Compiled model can't be generated, because query filters are not supported.".

Is there a standard way to bypass this issue in ASPNETZERO?

Thank you

Question

Dear Support,

we have an issue in the login page. We see that all browser are correctly storing the credentials information but when trying to login a second time the username prefilling is not proposed. Basically the user needs to focus the password field so the browser will propose the username and password to use. Could we do something to solve this issue?

Thank you

Question

Dear support,

our need is to authenticate our users with Azure AD. Our app is multitenant so we need to be able to provide connection to different Microsoft tenant based on our app tenant. I've read some old support request and I would like to be sure we have not a solution out-of-the box. Could you confirm a suggested strategy?

Thank you

Question

Dear Support,

I've a class using an external component. This component needs a format function "grid_format" I've defined as in the example below. The problem I have is that the line with ls.localize is returning always the same value of s (it's not translating. How can I achieve the goal to have a translation in this situation?

export class GridComponent extends AppComponentBase {
... skip ...
}
let ls: LocalizationService = new LocalizationService();
(window as grid_expression).grid_format = (column: any, value?: any) => {
    if (value == null)
        return '';
    let s: string = (column.customAttributes.prefix + +value);
    return ls.localize(s, AppConsts.localization.defaultLocalizationSourceName);
};
interface grid_expression extends Window {
    grid_enum_format?: Function;
}

Dear Support,

from some time Bing Maps are not working with my project. Looks like it's something related to the headers added by ASPNETZERO since it's working with a blank project. I'm receiving the following error:

Access to XMLHttpRequest at 'https://dev.virtualearth.net/REST/v1/Locations?query=countryRegion=Italia&locality=Castello%20Di%20Godego&postalCode=31030&addressLine=Via%20dell%27artigianato%2020&key=Alwbqg7eO63eNXWhPHB5nDPvJmChe5YR4V7CDbpNeoI_6BuZplJwvCXofxOlPXof' from origin 'xxxxxxxxxxx removed from author' has been blocked by CORS policy: Request header field pragma is not allowed by Access-Control-Allow-Headers in preflight response.

Question

Dear Support,

I would like to know if it's possible to send notifications from HOST to all users in all tenants and how we can do it

Thank you

Question

Dear Support,

I would like to know if there is a standard solution or a recommended one to:

  1. ask the user to accept our terms of use (after first login) or contract modification (when needed) before continue (our users are created by administrator and doesn't register to software)
  2. have a "What's new" area where we can publish all software modifications

I'm facing a problem with ASPNETZERO (Angular + .NET CORE). We have 100% CPU when a particular user login inside the sytem. We tried to recreate the user and after some days we faced the same problem. This user is used from different programs to collect information through API. We have hundreds of users in different tenants but only this has problems.

Showing 1 to 10 of 11 entries