I have a following POCO class

public class Account
    {
        [Key,DatabaseGenerated(DatabaseGenerationOption.Identity)]
        public string AccountId { set; get; }

        public string FirstName { set; get; }

        public string LastName { set; get; }

        public string Email { set; get; }


    }

I get the following exception when the database gets created

Identity column 'AccountId' must be of data type int, bigint, smallint, tinyint, or decimal or numeric with a scale of 0, and constrained to be nonnullable.
link|improve this question

64% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Shouldn't you have:

    [Key,DatabaseGenerated(DatabaseGenerationOption.Identity)]
    public Guid AccountId { set; get; }

?

link|improve this answer
Exactly...I have bymistakenly typed string...as soon as i changed it to Guid it worked....thanks – taherchhabra Apr 10 '11 at 9:55
feedback

Sound like you have to update your AccountId property from string to one of the mentioned datatypes in the exception:

int, bigint, smallint, tinyint, or decimal or numeric with a scale of 0, and constrained to be nonnullable

Any reason why it's now a string?

link|improve this answer
there is no particular reason....it was a by mistake... – taherchhabra Apr 10 '11 at 9:55
feedback

Your Answer

 
or
required, but never shown

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