从零开始进行ABP项目开发(三)—— 完善领域层

回顾

上一讲我们创建了一个实体Poet,采用EF与数据库中的表进行关联,在控制台应用中通过仓储对象访问数据。按照DDD的理论,仓储接口的定义是在领域层,而实现依赖于具体的技术,比如,在本例中采用的是EF技术,这是依赖反转的一个实例。ABP定义了仓储接口,并根据相应的实体动态生成仓储对象,这个功能使我们不需要针对每个实体都创建一个仓储类,避免了大量的相似代码的存在。上一讲为了说明问题,简化起见,我们在客户端直接调用仓储对象获得领域对象,而在实际项目中,是不可以这样做的,客户端应该通过应用层进行交互,而不是直接访问领域层,客户端与应用层交互的数据是DTO(数据传输对象),而不是领域对象。这一讲,创建其它几个实体,并建立实体之间的关系。

创建实体

我们还需要创建Poem、Category和PoemCategory实体。

Poem实体:

using Abp.Domain.Entities;
using System.Collections.Generic;

namespace ZL.Poem.Core.Poems
{
    /// <summary>
    /// 诗
    /// Volumn和Num是全唐诗中的卷和序号,
    /// </summary>
    public class Poem : Entity
    {
        /// <summary>
        /// 标题
        /// </summary>
        public virtual string Title { get; set; }

        /// <summary>
        /// 内容
        /// </summary>
        public virtual string Content { get; set; }

        /// <summary>
        /// 点评
        /// </summary>
        public virtual string Comments { get; set; }

        /// <summary>
        /// 卷(全唐诗)
        /// </summary>
        public virtual string Volumn { get; set; }

        /// <summary>
        /// 序号
        /// </summary>
        public virtual string Num { get; set; }

        /// <summary>
        /// 诗人id
        /// </summary>
        public virtual int PoetID { get; set; }

        /// <summary>
        /// 作者
        /// </summary>
        public virtual Poet Author { get; set; }


        /// <summary>
        /// 分类
        /// </summary>
        public virtual ICollection<CategoryPoem> PoemCategories { get; set; }
    }
}

Category实体:

using Abp.Domain.Entities;
using System.Collections.Generic;

namespace ZL.Poem.Core.Poems
{
    /// <summary>
    /// 诗的分类
    /// </summary>
    public class Category : Entity
    {
        /// <summary>
        /// 分类名称
        /// </summary>
        public virtual string CategoryName { get; set; }

        /// <summary>
        /// 该分类中包含的诗
        /// </summary>
        public virtual ICollection<CategoryPoem> CategoryPoems { get; set; }
    }
}


CategoryPoem实体:

using Abp.Domain.Entities;

namespace ZL.Poem.Core.Poems
{
    public class CategoryPoem : Entity
    {
        public virtual int CategoryId { get; set; }

        public virtual int PoemId { get; set; }

        public virtual Category Category { get; set; }

        public virtual Poem Poem { get; set; }
    }
}


然后修改Poet实体,增加与Poem之间的关系:

using Abp.Domain.Entities;
using System.Collections.Generic;

namespace ZL.Poem.Core.Poems
{
    /// <summary>
    /// 诗人,从ABP Entity派生
    /// </summary>
    public class Poet : Entity
    {
        /// <summary>
        /// 姓名
        /// </summary>
        public virtual string Name { get; set; }

        /// <summary>
        /// 介绍
        /// </summary>
        public virtual string Description { get; set; }

        /// <summary>
        /// 写的诗
        /// </summary>
        public virtual ICollection<Poem> Poems { get; set; }

    }
}

在DbContext中定义数据之间的关系:

首先,我们要在DbContext中增加新增实体的DbSet:

        public virtual DbSet<Core.Poems.Poem> Poems { get; set; }

        public virtual DbSet<Category> Categories { get; set; }

        public virtual DbSet<CategoryPoem> CategoryPoems { get; set; }

然后,我们要增加这些实体之间的关系。先回顾一下数据模型:

image

我们需要定义实体之间的关系,我们采用Fluent Api在DbContext的OnModelCreating中定义。

流式接口(fluent interface)是软件工程中面向对象API的一种实现方式,以提供更为可读的源代码。最早由Eric Evans与Martin Fowler于2005年提出。

 protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            base.OnModelCreating(modelBuilder);

            //映射Poet到数据库表
            modelBuilder.Entity<Poet>().ToTable("Poet");

            //映射实体与数据库中的字段,将Id映射到数据库表的PoetID字段
            modelBuilder.Entity<Poet>()
                    .Property(p => p.Id)
                    .HasColumnName("PoetID");

            //Poem映射
            modelBuilder.Entity<Core.Poems.Poem>().ToTable("Poem");
            modelBuilder.Entity<Core.Poems.Poem>()
                    .Property(p => p.Id)
                    .HasColumnName("PoemId");

            //定义Poem与Poet之间的一对多关系
            modelBuilder.Entity<Core.Poems.Poem>().HasOne<Poet>(s => s.Author)
                    .WithMany(s => s.Poems)
                    .HasForeignKey(s => s.PoetID);

            //Category映射
            modelBuilder.Entity<Category>().ToTable("Category");
            modelBuilder.Entity<Category>().
               Property(p => p.Id)
               .HasColumnName("CategoryId");

            ///CategoryPoem映射
            modelBuilder.Entity<CategoryPoem>().ToTable("CategoryPoem");
            modelBuilder.Entity<CategoryPoem>().
               Property(p => p.Id)
               .HasColumnName("CategoryPoemId");

            //定义多对多关系
            modelBuilder.Entity<CategoryPoem>()
                        .HasKey(t => new { t.CategoryId, t.PoemId });

            modelBuilder.Entity<CategoryPoem>()
                .HasOne(pt => pt.Poem)
                .WithMany(p => p.PoemCategories)
                .HasForeignKey(pt => pt.PoemId);

            modelBuilder.Entity<CategoryPoem>()
                .HasOne(pt => pt.Category)
                .WithMany(t => t.CategoryPoems)
                .HasForeignKey(pt => pt.CategoryId);
        }

现在,我们完善了领域层,并且使用EF实现了与数据库的映射。下一步就可以开发应用层了。

本文同步发布在我的个人网站 http://www.jiagoushi.cn

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容