Hello @nowayja
Thanks for informing us, we know this problem and working on it. It will be fixed with the next version, if we find a workaround, I will write here also.
Thank you so much, credit refunded. :)
Hello @safi,
We need to know what's the error build.
Please write here the errors.
Just for info:
ABP removed the *.DbMigrations
project from the solution with the 4.4 version. The error may about it.
You can see details in the blog post:
https://blog.abp.io/abp/ABP-Platform-4-4-RC-Has-Been-Released
Also, we've published an article to show how you can remove it, you can read the article here: https://community.abp.io/articles/unifying-dbcontexts-for-ef-core-removing-the-ef-core-migrations-project-nsyhrtna
Please be sure you've followed the article step by step. Then please let us the result.
Thanks.
Hello @maristides,
embedded resource
.IStringLocalizer<NewResource>
. Maybe you are using existing resource which is created with solution.Hello @hillin ,
Yes, we are aware the problem, the problem has been fixed with the v5.0
version and will be fixed the v4.4.x
patch version.
For the v4.3.3
version, you need to override the js
file that controls the menu in the lepton theme, can do it by following the steps below:
Themes/Lepton/Global/scripts
in your *.Web
proejct.app.js
in the scripts
folder.EmbeddedResource
.
app.js
file.Here is the technical documentation about overriding static files: https://docs.abp.io/en/abp/latest/Virtual-File-System#asp-net-core-integration
Also, credit refunded. :)
Thank you.
I am working on this issue now, will be replied soon.
Hello @raif
Unfortunately, this problem has no workaround and there is only one way to fix it that upgrading your solution to the new version.
ABP 5.0 has been released with the RC version and stable version will be released soon. With 5.0 version, this problem will be fixed.
Thank you.
Hi,
ABP has static defined menu system, and the existing system cannot be upgraded to dynamic.
We have dynamicMenu sistem with Cms-Kit, you may check it and implement similiar thing for your application.
Hello,
sorry for late reply, the credit is refunded.
Yes, you can create relations with File Management tables with your own tables.
Just configure File Management entities on with Entity Framework model builder.
Hello @morindo
ABP is not converting the DateTimes automatically for the client timezone.
You need to manually convert it for your clients. Let me show you what I did;
I just add the following configuration to my BlazorModule.
Configure<AbpClockOptions>(options =>
{
options.Kind = DateTimeKind.Utc;
});
With this configuration, ABP Framework will use only UTC time. It will saves the utc datatimes to DB also. Saving datetime as UTC is best-practise.
But, users may be located in different timezones, and I need to manually convert some "dateTime" properties as following.
Here is the result for website: (my local time is not UTC)
Here is the Database record:
As you can see, time is 09:26:34 at DB but I am successfuly converting it to my local time at the blazor client.
For user defined inputs, you do not need to convert to UTC, ABP automatically converts the inputs to UTC time (because we configured below)
Hi,
Could you please check " The AppUser Entity & Custom Properties " section at following article.
https://community.abp.io/articles/unifying-dbcontexts-for-ef-core-removing-the-ef-core-migrations-project-nsyhrtna