hi,
there's no direct way to achieve this.
but you can add a new byte
property to your entity, then generate the CRUD page.
afterwards, change the byte
type to byte[]
manually.
(you might need to add a new migration for this change)
alternatively you can use the string
property and save your Image as Base64
format.
Use the following CLI command to download the Lepton source code for both MVC and Angular.
abp get-source Volo.LeptonTheme
Or you can simply download it via ABP Suite
For downloading other source-code parts, see https://support.abp.io/QA/Questions/632/How-can-I-download-the-framework-and-source-code-for-pro-modules#answer-70bbbda7-c0a0-6b02-f782-39f93f11167d
How can I download Lepton source with Angular code included
hi
try the following command to download Lepton Theme with Angular source included.
abp get-source Volo.LeptonTheme
See these docs for Angular customization:
@Ryan.sposato@ethany.com disabling transaction is one way.
https://docs.abp.io/en/abp/latest/Unit-Of-Work#default-options
if you want to enable MongoDB transactions, you can do that by installing MongoDB replica set.
docker run --name mongo-0 -p 27018:27017 -d mongo --replSet "rs0" --bind_ip_all
docker run --name mongo-1 -p 27019:27017 -d mongo --replSet "rs0" --bind_ip_all
docker run --name mongo-2 -p 27020:27017 -d mongo --replSet "rs0" --bind_ip_all
docker exec -it [any one container id] mongo admin
rs.initiate({_id:"rs0", members:[{_id:0,host:"your host ip:27018"},{_id:1,host:"your host ip:27019"},{_id:2,host:"your host ip:27020"}]});
note that you need to update your project as well. otherwise Suite v3.2 will not work on your old project.
send the logs pls
%UserProfile%\.abp\suite\logs
hi sorry, we missed this question. @gterdem did you understand the issue?
found this https://github.com/MicrosoftDocs/azure-docs/issues/24673#issuecomment-462876182
hi I just checked what you want, and it's not implemented yet. it's on the roadmap.
so you cannot add a navigation property to another entity by using entity extension feature.
alternatively you can add CountryId
to the IdentityUser
entity and override the User Edit Form.
I uploaded User create, edit, index pages https://drive.google.com/file/d/1oURFFVMBcHHg73I-zxUBbRw-M9nUxDR7/view?usp=sharing
if you override the cshtml files and javascript files and put them in the shown location in your web project as embedded source, then you'll be overrided these files
also see how to override a UI https://docs.abp.io/en/abp/latest/UI/AspNetCore/Customization-User-Interface
still couldn't succeed? mail to info@abp.io