Quantcast entity framework với CSDL Mysql

entity framework với CSDL Mysql

by Neon Quach 5. January 2011 15:36

Nếu chúng ta muốn sử dụng ADO.NET entity framework cho CSDL Mysql, thì trước tiên chúng ta cần cài mysql-connector-net-6.3.6 cộng thêm các bước sau đây thì chúng ta có thể truy vấn csdl mysql sử dụng công nghệ ado.net entity framework.

Start visual studio 2010 lên chọn Server Explorer (Vew → Server Explorer) → Add Connection

add connection in view explorer

Click button Change để thay đổi kết nối tới csdl là mysql



Fill username và password root để connection tới csdl (ở đây csdl là BlogEngine)

filling username and password root

Note: Click vào Test Connection button để đảm bảm rằng thiết lập kết nối tới csdl blogengine thành công.

Tạo 1 dự án console application tên là ConnectToMySQL → Click chuột phải chọn Add New Item → ADO.NET Entity Data Model



Đặt tên và lưu chuổi kết nối



Select table objects



Sau khi nhấn Finish chúng ta sẽ thấy tất cả các table objects được add vào surface của visual studio, bước cuối cùng là viết code try vấn csdl mysql.

using System;

namespace ConnectToMySQL
{
    class Program
    {
        static void Main(string[] args)
        {
            using (BlogEngineEntities be = new BlogEngineEntities())
            {
                foreach (var user in be.be_users)
                {
                    Console.WriteLine(String.Format("{0} {1} {2}", user.UserName, user.EmailAddress, user.LastLoginTime));
                }
                Console.Read();
            }
        }
    }
}


Kết quả trả về:
Admin email@example.com 1/4/2011 12:00:00 AM

Hope this help!

Tags: , ,


Categories: ado.net entity framework | blogengine | c#

blog comments powered by Disqus

About me

I'm  currently employed as Software developer at devinition.com and also a Microsoft Certified Technology Specialist (MCTS), Microsoft Certified Professional Developer (MCPD) in Net Framework 2.0 and 3.5: Web Applications and MCTS .NET Framework 3.5, ADO.NET Applications

Powered by BlogEngine.NET 2.5.0.5 - Eco Theme by n3o Web Designers