Validation failed for one or more entities. The validation errors are:The UserName field is required












0















pls i'm getting error whenever i try to update my user identity model through a childonly partial view.
This is my partial method:



 [HttpGet]
[ChildActionOnly]
public ActionResult CheckOut(string Id)
{
Id = HttpContext.User.Identity.GetUserId();
var pickupuser = db.Users.Single(s => s.Id == Id);
CheckOutViewModel p = new CheckOutViewModel();
pickupuser.SurName = p.SurName;
pickupuser.UserName = p.UserName;
pickupuser.FirstName = p.FirstName;
pickupuser.DeliveryAddress = p.DeliveryAddress;
pickupuser.CustomerPhone = p.CustomerPhone;
pickupuser.DeliveryDate = p.DeliveryDate;
pickupuser.DeliveryTime = p.DeliveryTime;
pickupuser.CouponCode = p.CouponCode;
return PartialView("CheckOut", pickupuser);
}

[HttpPost]
[ValidateAntiForgeryToken]
public async Task<ActionResult> CheckOut(CheckOutViewModel appuser)
{
if (ModelState.IsValid)
{
var currentUser = User.Identity.GetUserId();
var cUser = db.Users.Single(u => u.Id == currentUser);
cUser.FirstName = appuser.FirstName;
cUser.SurName = appuser.SurName;
cUser.UserName = appuser.UserName;
cUser.CustomerPhone = appuser.CustomerPhone;
cUser.DeliveryDate = appuser.DeliveryDate;
cUser.DeliveryTime = appuser.DeliveryTime;
cUser.CouponCode = appuser.CouponCode;

try
{
//db.Entry(applicationUser).State = EntityState.Modified;
await db.SaveChangesAsync();
}
catch (DbEntityValidationException ex)
{
var errorMessages = ex.EntityValidationErrors
.SelectMany(x => x.ValidationErrors)
.Select(x => x.ErrorMessage);
var fullMessage = string.Join("", errorMessages);
var exceptionMessage = string.Concat(ex.Message, "The validation errors are:", fullMessage);
throw new DbEntityValidationException(exceptionMessage, ex.EntityValidationErrors);
}
}
return View(appuser);
}


and the error i'm getting:



Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.The validation errors are:The UserName field is required.


This is the parent method that i passed the CheckOut() method into:



 public ActionResult DisplayCheckOut()
{
List<ProductsViewModel> ShoppingCart = productList;
var cUsers = HttpContext.User.Identity.Name;
ViewBag.email = db.Users.Where(d => d.UserName == cUsers).Select(a => a.Email).SingleOrDefault();
ViewBag.phone = db.Users.Where(d => d.UserName == cUsers).Select(a => a.CustomerPhone).SingleOrDefault();
return View(ShoppingCart);
}


my identity model class:



public class ApplicationUser : IdentityUser
{
public string CustomerPhone { get; set; }
public string CustomerLocation { get; set; }
public string CustomerImage { get; set; }
public string SurName { get; set; }
public string FirstName { get; set; }
public string CouponCode { get; set; }
[DataType(DataType.Date)]
public DateTime? DeliveryDate { get; set; }
[DataType(DataType.Time)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "0:HH:mm")]
public DateTime? DeliveryTime { get; set; }
public string OrderStatus { get; set; }
public string DeliveryAddress { get; set; }
public string TableNo { get; set; }
public string Comment { get; set; }


public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
{
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// Add custom user claims here
return userIdentity;
}
}


my view model:



 public class CheckOutViewModel
{
[Display(Name = "Surname")]
public string SurName { get; set; }

[Display(Name = "Firstname")]
public string FirstName { get; set; }

[Display(Name = "Phone No")]
public string CustomerPhone { get; set; }
public string UserName { get; set; }

[Display(Name = "Shipping Address")]
//public string CustomerLocation { get; set; }
public DateTime? DeliveryTime { get; set; }
public DateTime? DeliveryDate { get; set; }
public string DeliveryAddress { get; set; }

[Display(Name = "Enter Coupon Code")]
public string CouponCode { get; set; }
}


Conclusion: i have checked all my properties and my viewmodels username is a string and is not required. could it be from the database. thanks










share|improve this question















migrated from superuser.com Jan 31 at 5:46


This question came from our site for computer enthusiasts and power users.



















  • In your IdentityUser class, I dont see a property named UserName but you are setting a property named UserName in the CheckOut() method. How?

    – Fakhar Ahmad Rasul
    Jan 31 at 6:51
















0















pls i'm getting error whenever i try to update my user identity model through a childonly partial view.
This is my partial method:



 [HttpGet]
[ChildActionOnly]
public ActionResult CheckOut(string Id)
{
Id = HttpContext.User.Identity.GetUserId();
var pickupuser = db.Users.Single(s => s.Id == Id);
CheckOutViewModel p = new CheckOutViewModel();
pickupuser.SurName = p.SurName;
pickupuser.UserName = p.UserName;
pickupuser.FirstName = p.FirstName;
pickupuser.DeliveryAddress = p.DeliveryAddress;
pickupuser.CustomerPhone = p.CustomerPhone;
pickupuser.DeliveryDate = p.DeliveryDate;
pickupuser.DeliveryTime = p.DeliveryTime;
pickupuser.CouponCode = p.CouponCode;
return PartialView("CheckOut", pickupuser);
}

[HttpPost]
[ValidateAntiForgeryToken]
public async Task<ActionResult> CheckOut(CheckOutViewModel appuser)
{
if (ModelState.IsValid)
{
var currentUser = User.Identity.GetUserId();
var cUser = db.Users.Single(u => u.Id == currentUser);
cUser.FirstName = appuser.FirstName;
cUser.SurName = appuser.SurName;
cUser.UserName = appuser.UserName;
cUser.CustomerPhone = appuser.CustomerPhone;
cUser.DeliveryDate = appuser.DeliveryDate;
cUser.DeliveryTime = appuser.DeliveryTime;
cUser.CouponCode = appuser.CouponCode;

try
{
//db.Entry(applicationUser).State = EntityState.Modified;
await db.SaveChangesAsync();
}
catch (DbEntityValidationException ex)
{
var errorMessages = ex.EntityValidationErrors
.SelectMany(x => x.ValidationErrors)
.Select(x => x.ErrorMessage);
var fullMessage = string.Join("", errorMessages);
var exceptionMessage = string.Concat(ex.Message, "The validation errors are:", fullMessage);
throw new DbEntityValidationException(exceptionMessage, ex.EntityValidationErrors);
}
}
return View(appuser);
}


and the error i'm getting:



Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.The validation errors are:The UserName field is required.


This is the parent method that i passed the CheckOut() method into:



 public ActionResult DisplayCheckOut()
{
List<ProductsViewModel> ShoppingCart = productList;
var cUsers = HttpContext.User.Identity.Name;
ViewBag.email = db.Users.Where(d => d.UserName == cUsers).Select(a => a.Email).SingleOrDefault();
ViewBag.phone = db.Users.Where(d => d.UserName == cUsers).Select(a => a.CustomerPhone).SingleOrDefault();
return View(ShoppingCart);
}


my identity model class:



public class ApplicationUser : IdentityUser
{
public string CustomerPhone { get; set; }
public string CustomerLocation { get; set; }
public string CustomerImage { get; set; }
public string SurName { get; set; }
public string FirstName { get; set; }
public string CouponCode { get; set; }
[DataType(DataType.Date)]
public DateTime? DeliveryDate { get; set; }
[DataType(DataType.Time)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "0:HH:mm")]
public DateTime? DeliveryTime { get; set; }
public string OrderStatus { get; set; }
public string DeliveryAddress { get; set; }
public string TableNo { get; set; }
public string Comment { get; set; }


public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
{
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// Add custom user claims here
return userIdentity;
}
}


my view model:



 public class CheckOutViewModel
{
[Display(Name = "Surname")]
public string SurName { get; set; }

[Display(Name = "Firstname")]
public string FirstName { get; set; }

[Display(Name = "Phone No")]
public string CustomerPhone { get; set; }
public string UserName { get; set; }

[Display(Name = "Shipping Address")]
//public string CustomerLocation { get; set; }
public DateTime? DeliveryTime { get; set; }
public DateTime? DeliveryDate { get; set; }
public string DeliveryAddress { get; set; }

[Display(Name = "Enter Coupon Code")]
public string CouponCode { get; set; }
}


Conclusion: i have checked all my properties and my viewmodels username is a string and is not required. could it be from the database. thanks










share|improve this question















migrated from superuser.com Jan 31 at 5:46


This question came from our site for computer enthusiasts and power users.



















  • In your IdentityUser class, I dont see a property named UserName but you are setting a property named UserName in the CheckOut() method. How?

    – Fakhar Ahmad Rasul
    Jan 31 at 6:51














0












0








0








pls i'm getting error whenever i try to update my user identity model through a childonly partial view.
This is my partial method:



 [HttpGet]
[ChildActionOnly]
public ActionResult CheckOut(string Id)
{
Id = HttpContext.User.Identity.GetUserId();
var pickupuser = db.Users.Single(s => s.Id == Id);
CheckOutViewModel p = new CheckOutViewModel();
pickupuser.SurName = p.SurName;
pickupuser.UserName = p.UserName;
pickupuser.FirstName = p.FirstName;
pickupuser.DeliveryAddress = p.DeliveryAddress;
pickupuser.CustomerPhone = p.CustomerPhone;
pickupuser.DeliveryDate = p.DeliveryDate;
pickupuser.DeliveryTime = p.DeliveryTime;
pickupuser.CouponCode = p.CouponCode;
return PartialView("CheckOut", pickupuser);
}

[HttpPost]
[ValidateAntiForgeryToken]
public async Task<ActionResult> CheckOut(CheckOutViewModel appuser)
{
if (ModelState.IsValid)
{
var currentUser = User.Identity.GetUserId();
var cUser = db.Users.Single(u => u.Id == currentUser);
cUser.FirstName = appuser.FirstName;
cUser.SurName = appuser.SurName;
cUser.UserName = appuser.UserName;
cUser.CustomerPhone = appuser.CustomerPhone;
cUser.DeliveryDate = appuser.DeliveryDate;
cUser.DeliveryTime = appuser.DeliveryTime;
cUser.CouponCode = appuser.CouponCode;

try
{
//db.Entry(applicationUser).State = EntityState.Modified;
await db.SaveChangesAsync();
}
catch (DbEntityValidationException ex)
{
var errorMessages = ex.EntityValidationErrors
.SelectMany(x => x.ValidationErrors)
.Select(x => x.ErrorMessage);
var fullMessage = string.Join("", errorMessages);
var exceptionMessage = string.Concat(ex.Message, "The validation errors are:", fullMessage);
throw new DbEntityValidationException(exceptionMessage, ex.EntityValidationErrors);
}
}
return View(appuser);
}


and the error i'm getting:



Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.The validation errors are:The UserName field is required.


This is the parent method that i passed the CheckOut() method into:



 public ActionResult DisplayCheckOut()
{
List<ProductsViewModel> ShoppingCart = productList;
var cUsers = HttpContext.User.Identity.Name;
ViewBag.email = db.Users.Where(d => d.UserName == cUsers).Select(a => a.Email).SingleOrDefault();
ViewBag.phone = db.Users.Where(d => d.UserName == cUsers).Select(a => a.CustomerPhone).SingleOrDefault();
return View(ShoppingCart);
}


my identity model class:



public class ApplicationUser : IdentityUser
{
public string CustomerPhone { get; set; }
public string CustomerLocation { get; set; }
public string CustomerImage { get; set; }
public string SurName { get; set; }
public string FirstName { get; set; }
public string CouponCode { get; set; }
[DataType(DataType.Date)]
public DateTime? DeliveryDate { get; set; }
[DataType(DataType.Time)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "0:HH:mm")]
public DateTime? DeliveryTime { get; set; }
public string OrderStatus { get; set; }
public string DeliveryAddress { get; set; }
public string TableNo { get; set; }
public string Comment { get; set; }


public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
{
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// Add custom user claims here
return userIdentity;
}
}


my view model:



 public class CheckOutViewModel
{
[Display(Name = "Surname")]
public string SurName { get; set; }

[Display(Name = "Firstname")]
public string FirstName { get; set; }

[Display(Name = "Phone No")]
public string CustomerPhone { get; set; }
public string UserName { get; set; }

[Display(Name = "Shipping Address")]
//public string CustomerLocation { get; set; }
public DateTime? DeliveryTime { get; set; }
public DateTime? DeliveryDate { get; set; }
public string DeliveryAddress { get; set; }

[Display(Name = "Enter Coupon Code")]
public string CouponCode { get; set; }
}


Conclusion: i have checked all my properties and my viewmodels username is a string and is not required. could it be from the database. thanks










share|improve this question
















pls i'm getting error whenever i try to update my user identity model through a childonly partial view.
This is my partial method:



 [HttpGet]
[ChildActionOnly]
public ActionResult CheckOut(string Id)
{
Id = HttpContext.User.Identity.GetUserId();
var pickupuser = db.Users.Single(s => s.Id == Id);
CheckOutViewModel p = new CheckOutViewModel();
pickupuser.SurName = p.SurName;
pickupuser.UserName = p.UserName;
pickupuser.FirstName = p.FirstName;
pickupuser.DeliveryAddress = p.DeliveryAddress;
pickupuser.CustomerPhone = p.CustomerPhone;
pickupuser.DeliveryDate = p.DeliveryDate;
pickupuser.DeliveryTime = p.DeliveryTime;
pickupuser.CouponCode = p.CouponCode;
return PartialView("CheckOut", pickupuser);
}

[HttpPost]
[ValidateAntiForgeryToken]
public async Task<ActionResult> CheckOut(CheckOutViewModel appuser)
{
if (ModelState.IsValid)
{
var currentUser = User.Identity.GetUserId();
var cUser = db.Users.Single(u => u.Id == currentUser);
cUser.FirstName = appuser.FirstName;
cUser.SurName = appuser.SurName;
cUser.UserName = appuser.UserName;
cUser.CustomerPhone = appuser.CustomerPhone;
cUser.DeliveryDate = appuser.DeliveryDate;
cUser.DeliveryTime = appuser.DeliveryTime;
cUser.CouponCode = appuser.CouponCode;

try
{
//db.Entry(applicationUser).State = EntityState.Modified;
await db.SaveChangesAsync();
}
catch (DbEntityValidationException ex)
{
var errorMessages = ex.EntityValidationErrors
.SelectMany(x => x.ValidationErrors)
.Select(x => x.ErrorMessage);
var fullMessage = string.Join("", errorMessages);
var exceptionMessage = string.Concat(ex.Message, "The validation errors are:", fullMessage);
throw new DbEntityValidationException(exceptionMessage, ex.EntityValidationErrors);
}
}
return View(appuser);
}


and the error i'm getting:



Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.The validation errors are:The UserName field is required.


This is the parent method that i passed the CheckOut() method into:



 public ActionResult DisplayCheckOut()
{
List<ProductsViewModel> ShoppingCart = productList;
var cUsers = HttpContext.User.Identity.Name;
ViewBag.email = db.Users.Where(d => d.UserName == cUsers).Select(a => a.Email).SingleOrDefault();
ViewBag.phone = db.Users.Where(d => d.UserName == cUsers).Select(a => a.CustomerPhone).SingleOrDefault();
return View(ShoppingCart);
}


my identity model class:



public class ApplicationUser : IdentityUser
{
public string CustomerPhone { get; set; }
public string CustomerLocation { get; set; }
public string CustomerImage { get; set; }
public string SurName { get; set; }
public string FirstName { get; set; }
public string CouponCode { get; set; }
[DataType(DataType.Date)]
public DateTime? DeliveryDate { get; set; }
[DataType(DataType.Time)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "0:HH:mm")]
public DateTime? DeliveryTime { get; set; }
public string OrderStatus { get; set; }
public string DeliveryAddress { get; set; }
public string TableNo { get; set; }
public string Comment { get; set; }


public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
{
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// Add custom user claims here
return userIdentity;
}
}


my view model:



 public class CheckOutViewModel
{
[Display(Name = "Surname")]
public string SurName { get; set; }

[Display(Name = "Firstname")]
public string FirstName { get; set; }

[Display(Name = "Phone No")]
public string CustomerPhone { get; set; }
public string UserName { get; set; }

[Display(Name = "Shipping Address")]
//public string CustomerLocation { get; set; }
public DateTime? DeliveryTime { get; set; }
public DateTime? DeliveryDate { get; set; }
public string DeliveryAddress { get; set; }

[Display(Name = "Enter Coupon Code")]
public string CouponCode { get; set; }
}


Conclusion: i have checked all my properties and my viewmodels username is a string and is not required. could it be from the database. thanks







c# asp.net-mvc validation






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 31 at 6:05









Ehsan Sajjad

51.2k1168125




51.2k1168125










asked Jan 29 at 16:35









CodeTemplarDevCodeTemplarDev

13




13




migrated from superuser.com Jan 31 at 5:46


This question came from our site for computer enthusiasts and power users.









migrated from superuser.com Jan 31 at 5:46


This question came from our site for computer enthusiasts and power users.















  • In your IdentityUser class, I dont see a property named UserName but you are setting a property named UserName in the CheckOut() method. How?

    – Fakhar Ahmad Rasul
    Jan 31 at 6:51



















  • In your IdentityUser class, I dont see a property named UserName but you are setting a property named UserName in the CheckOut() method. How?

    – Fakhar Ahmad Rasul
    Jan 31 at 6:51

















In your IdentityUser class, I dont see a property named UserName but you are setting a property named UserName in the CheckOut() method. How?

– Fakhar Ahmad Rasul
Jan 31 at 6:51





In your IdentityUser class, I dont see a property named UserName but you are setting a property named UserName in the CheckOut() method. How?

– Fakhar Ahmad Rasul
Jan 31 at 6:51












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54454086%2fvalidation-failed-for-one-or-more-entities-the-validation-errors-arethe-userna%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54454086%2fvalidation-failed-for-one-or-more-entities-the-validation-errors-arethe-userna%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Plaza Victoria

In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...