使用 rx.net 转换连接表
Posted
技术标签:
【中文标题】使用 rx.net 转换连接表【英文标题】:convert join table using rx.net 【发布时间】:2021-04-26 21:45:37 【问题描述】:在我的数据库中,我有一个连接表来存储 JobType
和 DocumentType
之间的多对多关系(简化描述)
工作类型表
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<IEnumerable<IObservable<JobTypeDocumentTypeViewModel>>>
类型的结果卡住了
任何帮助和/或建议将不胜感激。
【问题讨论】:
【参考方案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)))
);
【讨论】:
您的代码导致 IObservableIObservable<IReadOnlyCollection<JobTypeDocumentType>> dataService.GetJobDocumentTypes(int jobTypeId)
它返回一个 IObservable以上是关于使用 rx.net 转换连接表的主要内容,如果未能解决你的问题,请参考以下文章
如何将 DAO 查询转换为 Yii2 ActiveRecord。如何从连接表中选择和使用特定列
Entity Framework Core 5.0 如何将多对多连接的 LINQ 转换为使用 ASP.NET 成员资格的交集表