I am trying to learn entity framework with MySql database.
Trying to save the data with following code:
protected void btnSubmit_Click(object sender, EventArgs e)
{
if (txtName.Text == string.Empty ||
txtAge.Text == string.Empty)
{
lblMsg.Text = "Please enter proper details first";
return;
}
employee emp = new employee();
emp.Name = txtName.Text;
emp.Age = Convert.ToInt32(txtAge.Text);
using (entityframeworkEntities context =
new entityframeworkEntities())
{
context.AddToemployees(emp);
if (context.SaveChanges() == 1) // Error Part
{
lblMsg.Text = "Saved Successfully.";
}
}
}
The code is getting an Object Reference error on if (context.SaveChanges() == 1) . Even the emp is not added to the contaxt object.
When I debug the code, the debugger goes to following part:
public entityframeworkEntities() :
base("name=entityframeworkEntities", "entityframeworkEntities")
{
this.OnContextCreated();
}
Even on this part, the debugger comes to the braces but skip this.OnContextCreated(); line.
Here is my connection string in Web.Config
<add name="entityframeworkEntities" connectionString="metadata=res://*/ApplicationWithMySql.csdl|res://*/ApplicationWithMySql.ssdl|res://*/ApplicationWithMySql.msl;provider=MySql.Data.MySqlClient;provider connection string="server=localhost;User Id=root;password=root;database=entityframework"" providerName="System.Data.EntityClient" />
Please help me, where am I going wrong?
Thank you!
.edmx. It does not have a definition. – ygssoni Jan 30 at 6:53