up vote 1 down vote favorite
1
share [g+] share [fb]

I am considering the use of an EAV table in SQL Server to store some hierarchical/structured data, all the while knowing the capabilities of XML in SQL Server. I am aware of some of the performance draw backs of EAV due to excessive joins, however, does client side LINQ to object solve any of these problems?

I am looking for some advice and caveats to be aware of when considering either approach.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Check out:

Five Simple Database Design Errors You Should Avoid

and look at section (3) Entity-Attribute-Value Table

Basically: don't do it. Even if you use Linq-to-SQL to "undo" some of the messiness of EAV - I personally just wouldn't even start using it. It'll be messy some day, sooner or later.

Marc

link|improve this answer
Great article with great advice. Thanks! – Swim Oct 23 '09 at 14:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.