InterviewSolution
| 1. |
What Is Eav In Magento? |
|
Answer» EAV: stands for Entity Attribute Value, is a technique which allows you to add unlimited columns to your table virtually. EAV also known as object attribute value model and open schema. Entity (E): Entity actually REFERS to data ITEM. For example we can consider it as customer, category or product. Attribute (A): Attribute refers to the different ATTRIBUTES of the Entity. LIKE for example product have different attributes like color, size, price, etc. Value (V): Value refers to the actual value of the attribute of the entity. Like color has value red, price has value $25, etc. EAV: stands for Entity Attribute Value, is a technique which allows you to add unlimited columns to your table virtually. EAV also known as object attribute value model and open schema. Entity (E): Entity actually refers to data item. For example we can consider it as customer, category or product. Attribute (A): Attribute refers to the different attributes of the Entity. Like for example product have different attributes like color, size, price, etc. Value (V): Value refers to the actual value of the attribute of the entity. Like color has value red, price has value $25, etc. |
|