Click here to Skip to main content
15,894,896 members
Articles / Web Development / ASP.NET

Implementing CRUD operations in MySQL using Entity Framework

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
6 Jan 2013CPOL1 min read 23.6K   297   9  
How we can implement CRUD operations using a MySQL database.
<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      </assemblies>
    </compilation>
  </system.web>
  <connectionStrings>
    <add name="efdbEntities" connectionString="metadata=res://*/efModel.csdl|res://*/efModel.ssdl|res://*/efModel.msl;provider=MySql.Data.MySqlClient;provider connection string=&quot;server=172.16.18.31;User Id=root;password=server@123;Persist Security Info=True;database=efdb&quot;" providerName="System.Data.EntityClient" />
  </connectionStrings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
I am working as a Software engineer. Web development in Asp.Net with C#, WinForms and MS sql server are the experience tools that I have had for the past 3 years. Yet to work on WCF, WPF, Silverlight and other latest ones.

Comments and Discussions