vote up 0 vote down star

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.

flag

1 Answer

vote up 3 vote down check

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|flag
Great article with great advice. Thanks! – Swim Oct 23 at 14:41

Your Answer

Get an OpenID
or

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