溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何淺析iBATIS.NET字段映射自定義對象

發(fā)布時(shí)間:2021-10-28 10:14:38 來源:億速云 閱讀:130 作者:柒染 欄目:編程語言

如何淺析iBATIS.NET字段映射自定義對象,針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。

iBATIS.NET字段映射是什么意思呢?在iBATIS.NET中,查詢后的結(jié)果會(huì)自動(dòng)將每一個(gè)字段映射成Domain中的一個(gè)屬性值,這個(gè)映射的過程是通過TypeHandlerFactory類進(jìn)行的,在程序初始化時(shí)注冊了一些系統(tǒng)類和類型轉(zhuǎn)換類之間的關(guān)系:

handler = new NullableBooleanTypeHandler();  this.Register(typeof(bool?), handler);   handler = new NullableByteTypeHandler();  this.Register(typeof(byte?), handler);   handler = new NullableCharTypeHandler();  this.Register(typeof(char?), handler);   handler = new NullableDateTimeTypeHandler();  this.Register(typeof(DateTime?), handler);   handler = new NullableDecimalTypeHandler();  this.Register(typeof(decimal?), handler);   handler = new NullableDoubleTypeHandler();  this.Register(typeof(double?), handler);   handler = new NullableGuidTypeHandler();  this.Register(typeof(Guid?), handler);   handler = new NullableInt16TypeHandler();  this.Register(typeof(Int16?), handler);   handler = new NullableInt32TypeHandler();  this.Register(typeof(Int32?), handler);   handler = new NullableInt64TypeHandler();  this.Register(typeof(Int64?), handler);   handler = new NullableSingleTypeHandler();  this.Register(typeof(Single?), handler);   handler = new NullableUInt16TypeHandler();  this.Register(typeof(UInt16?), handler);   handler = new NullableUInt32TypeHandler();  this.Register(typeof(UInt32?), handler);   handler = new NullableUInt64TypeHandler();  this.Register(typeof(UInt64?), handler);   handler = new NullableSByteTypeHandler();  this.Register(typeof(SByte?), handler);   handler = new NullableTimeSpanTypeHandler();  this.Register(typeof(TimeSpan?), handler);

那么如果想將數(shù)據(jù)庫中的一個(gè)字段映射成我們自己的一個(gè)類,在這個(gè)類中進(jìn)行一些個(gè)性化處理,應(yīng)該怎么辦呢?

本來我想仿照StringTypeHandler類寫一個(gè)自己的類型處理類,但是通過查看iBATIS的源代碼,就算寫好了自己的類型處理類,好像也找不到注冊的接口(如果哪位兄弟找到了接口,望告知)

另一種方式是通過已經(jīng)注冊的CustomTypeHandler類型,實(shí)行其中的ITypeHandlerCallback接口來實(shí)現(xiàn)的,具體實(shí)現(xiàn)方式如下:

我這里實(shí)現(xiàn)的只是一個(gè)演示程序,演示將數(shù)據(jù)庫中的Account_LastName和Account_Email字段映射成自定義的Property類型,同時(shí)把它們放入一個(gè)Hashtable中。

iBATIS.NET字段映射1、

自定義Property類

namespace GSpring.Common  {      public class Property      {          private string _dataValue;           public string DataValue          {              get { return _dataValue; }              set { _dataValue = value; }          }           private string _dataType;           public string DataType          {              get { return _dataType; }              set { _dataType = value; }          }      }  }

iBATIS.NET字段映射2、

實(shí)現(xiàn)ITypeHandlerCallback接口的類

namespace GSpring.Common  {      public sealed class PropertyTypeHandler : ITypeHandlerCallback      {           public object ValueOf(string Value)          {              Property obj = new Property();              obj.DataValue = Value;              return obj;          }           public object GetResult(IResultGetter getter)          {              Property obj = new Property();              if (getter.Value != null && getter.Value != System.DBNull.Value)              {                  obj.DataValue = (string)getter.Value;              }              return obj;          }           public void SetParameter(IParameterSetter setter, object parameter)          {              setter.Value = ((Property)parameter).DataValue;          }           public object NullValue          {              get { return null; }          }      }   }

主要是其中的GetResult和SetParameter方法,實(shí)現(xiàn)和數(shù)據(jù)庫之間的存取操作。

iBATIS.NET字段映射3、

修改對應(yīng)的Domain類,加入兩個(gè)屬性:

public Hashtable ht = new Hashtable();  Property _emailAddress1 = new Property();  public Property EmailAddress1  {      get      {          return _emailAddress1;      }      set      {          _emailAddress1.DataType = "string";          _emailAddress1.DataValue = value.DataValue;          ht["郵件"] = _emailAddress1;      }  }   Property _lastName1 = new Property();  public Property LastName1  {      get      {          return _lastName1;      }      set      {          _lastName1.DataType = "string";          _lastName1.DataValue = value.DataValue;          ht["姓名"] = _lastName1;      }  }

iBATIS.NET字段映射4、

修改配置文件:

﹤resultMap id="account-result"  class="Account" ﹥      ﹤result property="Id"           column="Account_ID"/﹥      ﹤result property="FirstName"    column="Account_FirstName"/﹥      ﹤result property="LastName1"     column="Account_LastName"  typeHandler="GSpring.Common.PropertyTypeHandler"/﹥      ﹤result property="EmailAddress1" column="Account_Email" typeHandler="GSpring.Common.PropertyTypeHandler"/﹥  ﹤/resultMap﹥

主要是利用了其中的typeHandler屬性來指定一個(gè)類型轉(zhuǎn)換器。

關(guān)于如何淺析iBATIS.NET字段映射自定義對象問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI