使用 rx.net 转换连接表

Posted

技术标签:

【中文标题】使用 rx.net 转换连接表【英文标题】:convert join table using rx.net 【发布时间】:2021-04-26 21:45:37 【问题描述】:

在我的数据库中,我有一个连接表来存储 JobTypeDocumentType 之间的多对多关系(简化描述)

工作类型表

Column Type
Id int
Description varchar(100)

文档类型表

Column Type
Id int
Description varchar(100)

具有以下列的 JobTypeDocumentType:

Column Type
Id int
JobType int
DocumentType int

我想从数据库中检索数据并将结果记录集转换为IObservable<collection<ViewModels>>

在下面的代码中,GetJobDocumentTypes 方法返回 JobTypeDocumentType POCO 的集合:

IObservable<IReadOnlyCollection<JobTypeDocumentType>> dataService.GetJobDocumentTypes(int jobTypeId)` 

The purpose of getJobTypeDocumenTypeViewModels is to transform the returned POCOs into ViewModels:



private IObservable<IEnumerable<JobTypeDocumentTypeViewModel>> getJobTypeDocumenTypeViewModels(JobType jobType)
        
            var result = dataService.GetJobDocumentTypes(jobType.Id)
                .Select(items => items.Select(jtdt => 
                        dataService.GetById<DocumentType>(jtdt.DocumentType_Id)
                                   .Select(dt => new JobTypeDocumentTypeViewModel(jtdt, jobType, dt))));
            return result;
        

但是,我被 IObservable&lt;IEnumerable&lt;IObservable&lt;JobTypeDocumentTypeViewModel&gt;&gt;&gt; 类型的结果卡住了

任何帮助和/或建议将不胜感激。

【问题讨论】:

【参考方案1】:

在这种情况下你必须使用SelectMany

var result = dataService.GetJobDocumentTypes(jobType.Id)
    .SelectMany(items => items
        .Select(jtdt => dataService.GetById<DocumentType>(jtdt.DocumentType_Id)
        .Select(dt => new JobTypeDocumentTypeViewModel(jtdt, jobType, dt)))
    );

【讨论】:

您的代码导致 IObservable> 但我正在尝试获取 IObservable> 我的代码只返回 IEnumerable。谁转换为 IObservable?什么是 GetJobDocumentTypes? 签名在代码中显示:IObservable&lt;IReadOnlyCollection&lt;JobTypeDocumentType&gt;&gt; dataService.GetJobDocumentTypes(int jobTypeId) 它返回一个 IObservable>

以上是关于使用 rx.net 转换连接表的主要内容,如果未能解决你的问题,请参考以下文章

实体框架将纯连接查找表转换为多对多关系

如何将 DAO 查询转换为 Yii2 ActiveRecord。如何从连接表中选择和使用特定列

Pyspark:使用转换类型作为字符串的多重连接条件

Entity Framework Core 5.0 如何将多对多连接的 LINQ 转换为使用 ASP.NET 成员资格的交集表

2016.6.3类型强制转换,连接,生成数字表,子查询

HiveSQL核心技能之表连接