一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

NHibernate3剖析:Mapping篇之ConfORM實戰(zhàn)(4):ManyToMany語義

  ConfORM概述

  如果你不熟悉ConfORM請查看前幾篇文章,你可以到http://code.google.com/p/codeconform/獲取ConfORM最新版本。

  在Domain設(shè)計中經(jīng)常使用集合,在.NET中的集合有四種:Iesi.Collections.Generic.ISet<T>、System.Collections.Generic.ICollection<T>、System.Collections.Generic.IList<T>、System.Collections.Generic.IDictionary<TKey,TValue>,NHibernate分別使用Set、Bag、List、Map映射來映射這些集合,有關(guān)這些集合映射基礎(chǔ)可以參考下面四篇文章,手動編寫簡單的Mapping,從此杜絕啥啥啥生成工具(生成的東西太糟蹋了):

  這篇我們使用ConfORM“映射”多對多關(guān)聯(lián)。關(guān)聯(lián)關(guān)系有單向關(guān)聯(lián)和雙向關(guān)聯(lián)兩種,所以分為單向多對多關(guān)聯(lián)(Unidirectional many-to-many)、雙向多對多關(guān)聯(lián)(Bidirectional many-to-many)。

  Many-To-Many語義

  使用ConfORM“映射”多對多關(guān)聯(lián),無論是單向關(guān)聯(lián)還是雙向關(guān)聯(lián),我們只需要使用ObjectRelationalMapper類中的ManyToMany方法即可(下面示例代碼的黑體)。ConfORM會根據(jù)Domain解析集合成員進行配置。

[Test]
public void ManyToManyMappingDemo()
{
//show how work with many-to-many and how ConfORM understands OOP
var orm = new ObjectRelationalMapper();
var mapper = new Mapper(orm);
var entities = new[] { typeof(Person), typeof(Address) };
//use the definition of table-to-class strategy class by class
orm.TablePerClass(entities);
// Defining relations
orm.ManyToMany<Person, Address>();
// Show the mapping to the console
var mapping = mapper.CompileMappingFor(entities);
Console.Write(mapping.AsString());
}

  單向多對多關(guān)聯(lián)(Unidirectional many-to-many)

  我們使用各種集合定義Domain:

  1.Unidirectional using Set<T>

public class Person
{
private ISet<Address> addresses;
public Person()
{
addresses = new HashedSet<Address>();
}
public Guid Id { get; set; }
public string Name { get; set; }
public ICollection<Address> Addresses
{
get { return addresses; }
}
}
public class Address
{
public Guid Id { get; set; }
public string Street { get; set; }
public int CivicNumber { get; set; }
}

  Mapping

  上面測試輸出HbmMapping的映射字符串,如果你使用ReSharper或者TestDriven.NET工具測試,你可以看見下面輸出:

  注意紅色塊是關(guān)鍵代碼,只是按其要求配置了必需標簽,其中access是指訪問策略,ConfORM根據(jù)Domain定義選擇了一個正確的訪問策略。

UnidirectionalManyToManyMappingSet  2.Unidirectional using Bag<T>

public class Person
{
private ICollection<Address> addresses;
public Person()
{
addresses = new List<Address>();
}
public Guid Id { get; set; }
public string Name { get; set; }
public ICollection<Address> Addresses
{
get { return addresses; }
}
}

  Mapping

  輸出HbmMapping的映射字符串結(jié)果:

UnidirectionalManyToManyMappingBag  3.Unidirectional using List<T>

public class Person
{
private IList<Address> addresses;
public Person()
{
addresses = new List<Address>();
}
public Guid Id { get; set; }
public string Name { get; set; }
public ICollection<Address> Addresses
{
get { return addresses; }
}
}

  Mapping

  輸出HbmMapping的映射字符串結(jié)果:

UnidirectionalManyToManyMappingList  4.Unidirectional using Map<TK,TV>

public class Person
{
private IDictionary<string, Address> addresses;
public Person()
{
addresses = new Dictionary<string, Address>();
}
public Guid Id { get; set; }
public string Name { get; set; }
public IDictionary<string, Address> Addresses
{
get { return addresses; }
}
}

  Mapping

  輸出HbmMapping的映射字符串結(jié)果:

UnidirectionalManyToManyMappingMap  雙向多對多關(guān)聯(lián)(Bidirectional many-to-many)

  Domain

public class User
{
public Guid Id { get; set; }
public string Name { get; set; }
public ISet<Role> Roles { get; set; }
}

public class Role
{
public Guid Id { get; set; }
public string Name { get; set; }
public ISet<User> Users { get; set; }
}

  ConfORM

public void DomainDefinition(ObjectRelationalMapper orm)
{
orm.TablePerClass(new[] { typeof(User), typeof(Role) });
orm.ManyToMany<User, Role>();
}

  Mapping

  輸出HbmMapping的映射字符串結(jié)果:

BidirectionalManyToManyMapping  結(jié)語

  這篇文章展示ConfORM的Many-To-Many語義應(yīng)用,映射了兩種Many-To-Many映射。大家同時也注意到了,上面列名的命名規(guī)則感覺有點別扭,這是ConfORM按照默認的模式適配器配置了,我們可以增加自定義模式適配器或者使用通用定制化、特定定制化達到自定義的目的,這些內(nèi)容接下來的文章中介紹。

  參考資料

  Fabio Maulo:ConfORM: “Mapping” Many-To-Many

NET技術(shù)NHibernate3剖析:Mapping篇之ConfORM實戰(zhàn)(4):ManyToMany語義,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 免费人成a大片在线观看动漫 | 第一页亚洲 | 国产xx在线观看 | 在线免费观看色视频 | 在线观看91精品国产剧情免费 | 久久er精品热线免费 | 精品国产一区二区三区不卡在线 | 久久精品国产精品青草 | 韩国一级成a人片在线观看 韩国一级毛片 | 久久久不卡国产精品一区二区 | 久久穴 | 色图片小说 | 国产综合久久久久久鬼色 | 色影视| 国产真实伦正在播放 | 久久久久avav久久久 | 美女被男人桶到嗷嗷叫爽网站 | 91中文字幕在线播放 | 亚洲第一黄色网址 | 午夜黄色福利视频 | 性色aⅴ在线观看swag | 国产精品永久免费自在线观看 | 国产精品视频一区二区三区经 | 欧美五级在线观看视频播放 | 日产一一到六区麻豆 | 台湾swag在线视频 | 色女人天堂 | 美国美女一级毛片免费全 | 伊人激情网 | 成人在线激情视频 | 91久久青草精品38国产 | 在线小视频国产 | 欧美日韩在线视频 | 涩涩涩视频在线观看免费 | 国产在线播放成人免费 | 欧美性视频在线 | 激情视频激情图片激情小说 | 午夜在线日韩免费精品福利 | 国产欧美日韩高清专区ho | 成人免费大片黄在线观看com | 在线观看a网站 |