Base solution for your next web application

Activities of "samara081"

Hi,

I am using aspnet zero V10 with MVC and .Netcore 5. I run Yarn then, npm run create-bundles in MVC project

Recently i keep getting warring invalid license id for yarn and aspnetzero

Also After generating any entity with power tool, the console always show yarn invalid license code

How i can remove this warring?

Hi,

I am using Aspnetzero MVC with .net Core 5, Aspnetzero version is (10), i also tries same senario with 10.1 Rc and 9.3.

First I have create the child entity as follwoing

Then I have Created the master entity as follwoing:

However after runging the project, the button that shows the child records is missing in the page

Did i missed any step?

We just need it for a few APIs, as these APIs are used by specific client system as integration points. and this client require us to change the error format. i know the client should change it, however we are enforced by the customer to change it from our side

Hi,

I need to do minor changes for some api response exception wrapping, from

{
  "result": null,
  "targetUrl": null,
  "success": false,
  "error": {
    "code": 0,
    "message": "Error Message",
    "details": null,
    "validationErrors": null
  },
  "unAuthorizedRequest": false,
  "__abp": true
}

to be

{
  "result": null,
  "targetUrl": null,
  "IsSuccess": false,
  "error": {
    "code": 0,
    "message": "Error Message",  
  },
  "__abp": true
}

Is their any way to do it?

Hi,

Is there any way to trace all dynamic API requests and response with paramters in to log files? I am using MVC Core latest version.

Regards

Thanks, it is clear now.

we asked the developers to add this line while there are working on any js file, and remove it once finished.

Thanks for the link, it is very helpfull.

However i still have an issue.

I have another aspnetzero older project with visual studio 2017 and aspnetzero v6.3. where when editing any js file, i don't have to minify the file during development. any changes on the js file will be seen in browser directlly.

Now in visual studio 2019 with latest aspnetzero version, i have to update the min.js file on every edit on js file during development. or run " npm run create-bundles"

My question, can i have the old senario? where i can see the js file updates with the need to minify the file on development.

Hi,

Currentlly We are using MVC with .NET latest vesrion (v8.1.0 with .NetCore 3.1) and Visual studio 2019. When edit any js file during debug , i have to minify the file to be able to see the updates on broswer. how i can force the debug to read from js file (not min file) during development. and just read form minified file during release version.

Regards

Thanks ismcagdas

Hi,

I need to read the lateset value of application setting, but i don't want to read from cash. i used SettingManager.GetSettingValue to get the value, however sometimes it data is outdated as the seeting has been changed from another server.

To solve this, i clread the cashe before getting the vlaue "_cachingAppService.ClearCache" but this needs mentainnace permissin to excute.

Is thier any to read the setting from database, not the cashe?

Showing 11 to 20 of 37 entries