Entity does not support EDIT operation??
This EntitySet of type 'FitnessTrackerPlus.Web.Data.UserInformation' does not support the 'Edit' operation.
I get this here.
publicstring security_question
{
get
{
returnthis._security_question;
}
set
{
if ((this._security_question != value))
{
this.Onsecurity_questionChanging(value);
this.RaiseDataMemberChanging("security_question");
this.ValidateProperty("security_question", value);
this._security_question = value;
this.RaiseDataMemberChanged("security_question");
this.Onsecurity_questionChanged();
}
}
}
|