Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
- ABP Framework version: v3.1.2
- UI type: MVC
- Tiered (MVC) or Identity Server Seperated (Angular): no
- Exception message and stack trace:
- Steps to reproduce the issue:
Hi,
I want to save picture in my table, how to Add Picture Column in ABP Suite. Also, is there any guide to change the user profile photo?
Thank you.
2 Answer(s)
-
0
Hi,
any update ?
Thank you.
-
0
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 thebyte
type tobyte[]
manually. (you might need to add a new migration for this change)alternatively you can use the
string
property and save your Image asBase64
format.