I have Product on database. Product name is "WINNER".
İf i add new product with name "Winner" , result is null.
How can i match WINNER and Winner as same ?
public ActionResult AddProduct(MyModel model)
{
var Result = context.Product.Where(s => s.ProductName == model.NewProductName).FirstOrDefault();
return view();
}
Any help will be greatly appreciated.