C# ORM從物件到資料庫表的對映
最近看了C#的反射基制,在想到C#的特性我覺的用C#建一套從物件到資料庫表的對映的框架是非常好,不用在像NHIBERNATE那樣要寫煩瑣的配置檔案.
用特性建立對物件間的關聯
特性定義:
[Serializable, AttributeUsage(AttributeTargets.Class, AllowMultiple=true)] public class AssociationAttribute : Attribute { // Fields private bool cascadeDelete; private enumERType erType; private Type targetType; // Methods public AssociationAttribute(Type targetType, enumERType erType); // Properties public bool CascadeDelete { get; set; } public enumERType ERType { get; set; } public Type TargetType { get; set; } }
建立一個物件應用特性
[Serializable]
[Association(typeof(Image), enumERType.R1M, CascadeDelete = true)]
[Association(typeof(File), enumERType.R1M, CascadeDelete = true)]
[Association(typeof(Flash), enumERType.R1M, CascadeDelete = true)]
[Association(typeof(Comment), enumERType.R1M, CascadeDelete = true)]
[Association(typeof(TAG), enumERType.RMM)]
public class Article : DBObject
{
[DBType(enumDBType.Char, Length = 256)]
string title;[DBType(enumDBType.Char, Length = 256)]
string keywords;[DBType(enumDBType.Text)]
string content;DateTime updateTime;
///
/// Initializes a new instance of theclass.
///
public Article()
{
title = string.Empty;
keywords = string.Empty;
content = string.Empty;
updateTime = DateTime.Now;
}#region Attributes
///
///
///
public string Title
{
get { return title; }
set { title = value; }
}///
///
///
public string Keywords
{
get { return keywords; }
set { keywords = value; }
}///
///
///
public string Content
{
get { return content; }
set { content = value; }
}///
///
///
public System.DateTime UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
#endregion
#region ClassMetaData
public new class Meta
{
public static string Guid = "CMS_Article_guid";public static string Title = "CMS_Article_title";
public static string Keywords = "CMS_Article_keywords";
public static string Content = "CMS_Article_content";
public static string UpdateTime = "CMS_Article_updateTime";
public static string Dbstate = "CMS_Article_dbstate";}
}
#endregion其中META. class 是冗餘欄位對應資料庫的列名
應用反射獲得物件間的關聯
建立物件的表
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-621839/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 資料庫相關之精彩的ORM對映框架資料庫ORM框架
- 物件關係對映(ORM)簡單看懂物件ORM
- 業務物件對映到表之間的關聯問題!!物件
- C# 高效能物件對映C#物件
- 如何將資料庫中json格式的列值對映到java物件的屬性中資料庫JSONJava物件
- 阿里JAVA手冊之MySQL資料庫(建表規約、索引規約、SQL語句、ORM對映)阿里JavaMySql資料庫索引ORM
- Django 原始碼小剖: Django 物件關係對映(ORM)Django原始碼物件ORM
- mybatis 同一張表的資料被對映到 一個結果物件例項 的 多個屬性物件 上MyBatis物件
- 基於.NET C#的 sqlite 資料庫 ORM 【Easyliter】C#SQLite資料庫ORM
- Dozer物件對映框架Map到JSONString對映問題排查物件框架JSON
- JavaScript 資料處理 - 對映表篇JavaScript
- PHP設計模式(4)—— 資料物件對映模式PHP設計模式物件
- 用物件導向資料庫代替ORM框架是否可行物件資料庫ORM框架
- 輕量ORM-SqlRepoEx (十五)最佳實踐之資料對映(Map)ORMSQL
- J2EE中幾種物件導向的資料庫對映訪問策略:物件資料庫
- 7 個流行的.Net開發ORM對映工具ORM
- 從原始資料型別到值物件資料型別物件
- Room ORM 資料庫框架OOMORM資料庫框架
- beego的ORM-配置資料庫GoORM資料庫
- MyBatis從入門到精通(九):MyBatis高階結果對映之一對一對映MyBatis
- MyBatis從入門到精通(十一):MyBatis高階結果對映之一對多對映MyBatis
- Util應用框架基礎(二) - 物件到物件對映(AutoMapper)框架物件APP
- C# 資料操作系列 - 6 EF Core 配置對映關係C#
- 資料結構-對映資料結構
- 當資料庫表無主鍵ID時,ORM這樣更新資料資料庫ORM
- 關於Beego ORM和 request body 的對映問題GoORM
- mybatis 實體類排除資料庫欄位對映MyBatis資料庫
- MapStruct 解了物件對映的毒Struct物件
- ORM框架和資料庫對系統效能影響的比較ORM框架資料庫
- 資料庫物件遷移表空間資料庫物件
- orm2 中文文件 1. 連線到資料庫ORM資料庫
- NHibernate 多對多對映的資料更新
- C# 反射/對映學習C#反射
- C#:DataTable對映成ModelC#
- 對執行中的Mysql資料庫建立從庫MySql資料庫
- 從JDBC到ORM的事務實現JDBCORM
- 對話天雲資料雷濤:從IT到DT,我們需要什麼樣的資料庫?資料庫
- mysql對資料庫表建索引MySql資料庫索引