在WFT項目中,SQL-MAP使用較多,但是實體類用的很少,實際上,PDF.NET的實體類相當強大,下面的測試程序是在MySQL中操作的實例。
名詞解釋:
PDF.NET 是一套全新的快速數據處理框架 PWMIS Data Develop Framework,簡稱PDF
1,首先在App.config文件中配置數據庫連接字符串:
- <?xml version="1.0" encoding="utf-8" ?>
- <configuration>
- <connectionStrings>
- <add name ="default" connectionString ="server=192.168.50.41;
- User Id=root;password=hisun;database=test" providerName="PWMIS.DataProvider.Data.MySQL,
- PWMIS.MySqlClient"/>
- </connectionStrings>
- </configuration>
2,然後定義一個“用戶”實體類:
- /*
- * PDF.NET 數據開發框架
- * http://www.pwmis.com/sqlmap
- */
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using PWMIS.DataMap.Entity;
- namespace TestMySqlEntity
- {
- class User:EntityBase
- {
- public User()
- {
- TableName = "tb_user";
- PrimaryKeys.Add("ID");//主鍵
- IdentityName = "ID";//標識,自增
- PropertyNames = new string[] {"ID","Name","Age" };
- PropertyValues = new object[PropertyNames.Length];
- }
- public int ID
- {
- get { return getProperty<int>("ID"); }
- set { setProperty("ID", value); }
- }
- public int Age
- {
- get { return getProperty<int>("Age"); }
- set { setProperty("Age", value); }
- }
- public string Name
- {
- get { return getProperty<string>("Name"); }
- set { setProperty("Name", value,50); }
- }
- }
- }
3,根據這個實體類,我們去MySQL定義一個用戶表:tb_user,具體過程省略。
4,編寫ORM實體類操作的測試代碼:
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using PWMIS.DataMap.Entity;
- namespace TestMySqlEntity
- {
- class Program
- {
- static void Main(string[] args)
- {
- User u = new User();
- //*************構建 OQL 查詢表達式 ******* begin ************
- //查詢實體集合
- //使用 OQLCompare 對象作為條件
- //OQL q = OQL.From(u).Select().Where(new OQLCompare(u).
- Comparer(u.Age, OQLCompare.CompareType.NoSmaller, 15)).END ;
- OQL q = new OQL(u);
- //使用OQL2 作為條件對象
- q.Select().Where(q.Condition.AND(u.Age, ">=", 15)).OrderBy (u.Age ,"asc");
- //使用 QueryParameter 數組作為條件,適合於多個並列的And條件
- //q.Select().Where(new QueryParameter[] { new QueryParameter
- ("Age", PWMIS.Common.enumCompare.NoSmaller, 15) }).OrderBy(u.Age, "asc");
- Console.WriteLine("OQL to SQL:\r\n"+q.ToString ());
- //*************構建 OQL 查詢表達式 ******* end ************
- //查詢實體列表
- var result = EntityQuery<User>.QueryList(q);
- Console.WriteLine("查詢實體集合成功,數量:"+result .Count );
- Console.WriteLine("\r\nExecuted SQL Text:\r\n{0}\r\n",
- PWMIS.DataProvider.Data.CommandLog.Instance.CommandText);
- //查詢單個實體
- u.Name = "zhang san";
- q.Select().Where(u.Name);
- Console.WriteLine("OQL to SQL:\r\n" + q.ToString());
- User u1 = EntityQuery<User>.QueryObject(q);
- if (u1 != null)
- Console.WriteLine("查詢單個實體成功!");
- Console.WriteLine("\r\nExecuted SQL Text:\r\n{0}\r\n",
- PWMIS.DataProvider.Data.CommandLog.Instance.CommandText);
- //直接使用EntityQuery<T>.Instance 屬性的插入、修改、刪除方法
- u.Name = "li si3";
- u.Age = 15;
- if (EntityQuery<User>.Instance.Insert(u) > 0)
- Console.WriteLine("插入實體成功!"); //將自動為ID屬性賦值
- Console.WriteLine("\r\nExecuted SQL Text:\r\n{0}\r\n",
- PWMIS.DataProvider.Data.CommandLog.Instance.CommandText);
- u.Age = 25;
- if (EntityQuery<User>.Instance.Update (u) > 0)
- Console.WriteLine("修改實體成功!");
- Console.WriteLine("\r\nExecuted SQL Text:\r\n{0}\r\n",
- PWMIS.DataProvider.Data.CommandLog.Instance.CommandText);
- User u2 = new User();
- u2.Name = "wang wu";
- u2.Age = 20;
- //使用EntityQuery<T> 的實例對象方法更新實體
- //只會更新賦值過的屬性值
- EntityQuery<User> eq = new EntityQuery<User>(u2);
- if (eq.SaveAllChanges() > 0)
- Console.WriteLine("更新實體成功!");
- Console.WriteLine("\r\nExecuted SQL Text:\r\n{0}\r\n",
- PWMIS.DataProvider.Data.CommandLog.Instance.CommandText);
- Console.Read();
- }
- }
- }
5,編譯運行,得到下面的結果:
- OQL to SQL:
- SELECT [ID],[Name],[Age]
- FROM [tb_user]
- Where [Age] >= @Age0
- Order by [Age] asc
- 查詢實體集合成功,數量:23
- Executed SQL Text:
- SELECT `ID`,`Name`,`Age`
- FROM `tb_user`
- Where `Age` >= @Age0
- Order by `Age` asc
- OQL to SQL:
- SELECT [ID],[Name],[Age]
- FROM [tb_user]
- Where Name=@Name
查詢單個實體成功!
- Executed SQL Text:
- SELECT `ID`,`Name`,`Age`
- FROM `tb_user`
- Where Name=@Name
插入實體成功!
- Executed SQL Text:
- INSERT INTO `tb_user`(`Name`,`Age`) VALUES (@P0,@P1)
修改實體成功!
- Executed SQL Text:
- UPDATE `tb_user` SET `Age`=@P0 WHERE `ID`=@P1
更新實體成功!
- Executed SQL Text:
- INSERT INTO `tb_user`(`Name`,`Age`) VALUES (@P0,@P1)
6,結果說明
我們看到整個操作都成功了,特別注意這個:
- UPDATE `tb_user` SET `Age`=@P0 WHERE `ID`=@P1
當時我們只給Age屬性重新賦值了,所以生成的更新語句也僅僅更新了該字段。
注意,當前測試程序僅支持PDF.NET框架最新版本 Ver 4.0.11.0415 ,不過框架的ORM功能在之前的版本就已經提供,只是顯示結果稍有不同。