Dear Support,
I have a ASP.NET Core + Angular application and 2 questions:
Thank you
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:
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
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
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
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.
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
Dear Support,
I would like to know if there is a standard solution or a recommended one to:
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.