gpt4 book ai didi

c# - 我如何首先使用可重用查询/表达式和 EF 代码将子实体作为 DTO 在父级中获取?

转载 作者:行者123 更新时间:2023-11-30 21:56:54 25 4
gpt4 key购买 nike

我在寻找将实体及其子实体转换为 DTO 对象的好方法时遇到问题。对于这篇文章,我创建了伪代码,这是一个省略了数据库上下文、DTO 对象的简化示例。假设我有一个父实体和一个子实体:

public class Parent {
int Id;
string Name;
List<Child> Children;
}

public class Child {
int Id;
string Name;
Parent Parent;
int ParentId;
}

我研究了两种可能性,但一直未能找到好的解决方案。请查看这两个示例以及我卡住的地方。

<强>1。使用选择查询的示例

要将所有父实体作为 DTO 检索,我可以在 Controller 中执行以下操作:

public IHttpActionResult GetParents()
{
var children = from c in _context.Children
select new ChildDTO()
{
Id = c.Id,
Name= c.Name
};

var parents = from p in _context.Parents
select new ParentDTO()
{
Id = p.Id,
Name = p.Name
Children = children.ToList(),
};

return parents;
}

这将返回父 DTO 对象及其所有子对象作为 DTO 对象。如果我想创建一个新函数来获取 ID 为“1”的 Parent,我现在必须复制 select 语句以添加一个 where 子句:

public IHttpActionResult GetParent(int parentId)
{
var parents = from p in _context.Parents where p.id == parentId
...

如果我只想显示一个父对象列表,也可能存在我不想返回子对象的情况。这意味着我基本上必须复制代码并将选择更改为:

select new ParentDTO()
{
Id = p.Id,
Name = p.Name
//Removed the Children
//Children = children.ToList(),
};

在这个例子中,我没有看到尽可能多地重用代码的好方法,所以我不会一遍又一遍地编写相同的基本选择语句。

<强>2。使用表达式的示例

我也可以为 parent 和 child 创建表达式,但我不知道

private static readonly Expression<Func<Child, ChildDTO>> AsChildDTO =
p => new ChildDTO()
{
Id = p.Id,
Name = p.Name
};

private static readonly Expression<Func<Parent, ParentDTO>> AsParentDTO =
p => new ParentDTO()
{
Id = p.Id,
Name = p.Name
};

为了得到 parent ,我可以在我的 Controller 中做:

...
//Get list of parents
var parents = _context.Parents.Select(AsParentDTO);

//Or: Get only parent with Id
var specificParent= _context.Parents
.Select(AsParentDTO)
.Where(p => p.Id == 1);

return parents;
...

这个解决方案对我来说似乎不错,因为我可以重用 Epressions 并根据需要扩展它们。我似乎无法以这种方式将 child 包括在 parent 中:

...
var parents = _context.Parents
.Include(p => p.Children)
//I have no idea if it is possible to Invoke the child Expression here...
.Select(p => p.Children= AsChildDTO.Invoke()) //<-- this does not work
.Select(AsParentDTO)
...

正如我在上面的评论中所写;我不知道是否可以在这里以某种方式调用子表达式。

结尾

这是我尝试过但被卡住的两件事。但也可能是我错过了一个非常明显的解决方案。我的问题是如何以可以重用尽可能多的代码的方式解决这个问题?

最佳答案

我认为你过于复杂化了。

var results=_context.Parents
.Include(p=>p.Children);

将返回您的 EF 对象。这就是你应该与之合作的。如果您想将 EF 对象转换为 DTO 对象,请将其保存以用于最终投影(我很少使用 DTO 对象,因为来自 EF 的 POCO 对象通常就很好)。

var parents=results.Select(p=>new ParentDTO
{ id=p.id,name=p.name,children=p.Children.ToList()}
);

如果你只想要父 1,那么:

var parent=results.Where(p=>p.id==1);

如果你想把它作为parentDTO:

var parent=results.Where(p=>p.id==1).Select(p=>new ParentDTO {
{ id=p.id,name=p.name,children=p.Children.ToList()}
);

您可以使用 AsParentDto 之类的东西,但这是否意味着您要复制整个父属性? (在您的简单情况下——id 和名称)。如果要复制整个属性列表,为什么要创建一个与 EF 对象具有所有相同属性的新对象,而不是仅仅重用 EF 对象?我唯一一次使用 Dto 对象是如果我想传递一个只有一些属性的父对象,并且我想避免自己从数据库中检索其他属性,在这种情况下,我仍然会使用原始数据库查询,并将其作为最后一步投影到其中。

var slimparent=results.Where(p=>p.id==1).Select(p=>new SlimParentDto {
id=p.id });

当然,如果我只想要父 ID,那么我会使用更简单的 IQueryable<int>喜欢:

var parentids=results.Where(p=>p.id==1).Select(p=>p.id);

--- 长话短说 ---

创建一个单一的方法来检索您的对象将包含所有属性。然后一切都应该使用它作为基础,并在您的 Controller 中附加进一步的改进以将其过滤到您想要的数据子集。然后作为最后一步,将结果投影到您想要的任何 DTO 中。在完成投影之前,切勿使用任何方法来枚举 IQueryable。然后 EF/LINQ 将为您生成最佳查询,只需检索填充 DTO 所需的属性。

关于c# - 我如何首先使用可重用查询/表达式和 EF 代码将子实体作为 DTO 在父级中获取?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31101339/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com