https://bsscommerce.com/confluence/magento-2-eav-model/
https://devdocs.magento.com/guides/v2.4/extension-dev-guide/attributes.html
https://vi-magento.com/eav-trong-magento-2/
Ta xem xét một ví dụ sau:
Giả sử ta cần lưu thông tin product, theo cách lưu trữ thông thường, ta sẽ tạo bảng product, gồm các cột sau:
Bây giờ, ta muốn theo một thuộc tính là cost (là giá trị nhập kho của sản phẩm), ta sẽ phải thêm một cột vào bảng product này.
...
Value: bảng lưu trữ giá trị, ứng với product này, attribute này thì sẽ có giá trị là bao nhiều. Ở đây sẽ có nhiều bảng value, ứng với mỗi kiểu giá trị (product_entity_varchar) và (product_entity_decimal).
Tạo attribute trong Magento : https://bsscommerce.com/confluence/magento-2-eav-model/ - Phần số 6. Khuyến cáo dùng cách 6.2
Exercise:
Add attribute is_feature to product
Write controller to show all feature product.
Add attribute gift_card_type to product with the option: virtual, physical, combine .
Change gift_card_type from option to text.