Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question already has an answer here:

how can one set some attribute in Entity (Entity Framework) to be unique? One possibility would be to make it primary key but that's not what I want.

Thank you

James

share|improve this question

marked as duplicate by Andrew Barber Apr 14 at 14:06

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 12 down vote accepted

Entity framework doesn't support unique keys so the only way is to set the unique constraint / index in the database. It will not ensure uniqueness in the application when you try to insert / update records but the exception will be fired if you try to save non unique value to the database.

share|improve this answer

http://blogs.msdn.com/b/efdesign/archive/2011/03/09/unique-constraints-in-the-entity-framework.aspx

also see Unique keys in Entity Framework 4

share|improve this answer
1  
Yes, very nice article about feature we can hopefully expect in the next major release of Entity Framework - not in 4 or 4.1. – Ladislav Mrnka May 18 '11 at 21:20
It seems this is not even included in EF v5 :( – Ε Г И І И О Mar 26 at 13:28

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