About 30 results
Open links in new tab
  1. EAV - is it really bad in all scenarios? - Software Engineering Stack ...

    Jul 15, 2011 · I'm thinking to use an entity-attribute-value (EAV) model for some of the stuff in one of the projects, but all questions about it in Stack Overflow end up to answers calling EAV an …

  2. Dynamically transform EAV data into standard SQL table

    Dec 2, 2023 · I use MariaDB to store data using EAV model. I need EAV, because each attribute of each entity can have its own validity (validFrom, validTo). For example, I have entity person …

  3. Entity Framework Code First, C# class separation and EAV

    Apr 16, 2016 · In an EAV design, of a relation (aka fields, or columns, of a database table) are taken out of a relation and stored as records in an Attributes tables. The are stored in yet …

  4. Entity-Attribute-Value table vs single table for storage of posts ...

    Currently I can think of two options: Not using EAV tables and just having single tables for each entity type (posts, pages and events) and having all data (about 15 fields) in the entity table.

  5. Domain Driven Design with an EAV database model

    How can one apply DDD to a EAV database model? Consider this EAV database model: How am I supposed to build a domain model if all my entities and their attributes will be stored in the …

  6. performance - Using MySql 5.7 JSON columns for EAV - Software ...

    EAV EAV is largely frowned upon but seems to work for Magento. But after researching all the headaches it causes I am a bit reluctant to use it Use JSON Columns in MySql 5.7 This is …

  7. Configuration data: single-row table vs. name-value-pair table

    For me, whether you go single-row or EAV (Entity-Attribute-Value) depends on how you want to consume them. EAV's power is that new data can be added with no change to structure.

  8. database - Software Engineering Stack Exchange

    Aug 13, 2012 · I'm not asking if EAV tables are good or bad. I'm wondering if they are considered "normalized", and if not, why? If they aren't normalized, which normal form are they violating …

  9. Correct Class Design for EAV Model - Software Engineering Stack …

    Correct Class Design for EAV Model Ask Question Asked 10 years, 4 months ago Modified 10 years, 4 months ago

  10. MVC4 : How to create model at run time? - Software Engineering …

    The advantage compared to EAV design is that data retrieval and storage logic is a bit simpler, while maintaining small data footprint. Disadvantage is the potential cost of maintaining …