1
Answer

how to check already existing record in mvc

Mark Tabor

Mark Tabor

7y
152
1
I am new to mvc and i am creating application with built in read/write controller and views using entity framework , below is my create customer controller now i want to check the unique mobile number i mean mobile number for each customer should be unique , how to check that below is my controller code.
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "Cutomer_ID,Customer_Name,Phone,Location,Email,gender")] Customer customer, string BtnPrevious, string BtnNext)
{
// bool isexists = db.customers.Any(x => x.ContactId == _customer.ContactId)
if (ModelState.IsValid)
{
//bool contactExists = db.Customers.Any(contact => contact.Customer_Name.Equals());
db.Customers.Add(customer);
db.SaveChanges();
// return View("~/Views/Orders/Details.cshtml");
// return RedirectToAction("~/Views/Shirts/Index.cshtml");
}
return View(customer);
}
 
Answers (1)
2
Nilesh Shah

Nilesh Shah

NA 22.3k 215k 7y

I hope you googled it yourself already to know the difference.

In case you didnot get anything, let me say following:

TFS - is MS product for source control, which is based on client-server model i.e. there is one centralized server which holds copy of source code, clients will need to get latest code from that server, check out file for editing and check in back when done. It is available as a downloadable software and you install and host it on your server.
 
VSTS -  consider it "new" version of TFS, which is available as SaaS - you dont need to install but you can consume it directly. VSTS is based on distributed source control model, just like GitHub, where you work in your own "branch" of code and your code gets "merged" into master copy located on server.
 
For more, I suggest you watch some videos from Chanel 9 or youtube. 
Accepted