EF core 2 个不同的表到相同的 dto

发布于 2025-01-14 12:59:23 字数 129 浏览 2 评论 0原文

我正在对 IQueryable 进行选择,因此该 IQueryable 可以来自 2 个不同的表,但 dto 是相同的。我的问题是,由于对每个代码的选择,我正在重复代码。有没有办法创建一个接收 IQueryable 并在其中进行选择的通用方法?

I'm doing a select to an IQueryable, so this IQueryable can come from 2 different tables but the dto is the same. My problem is that I'm duplicating the code because of the select for each of them. Is there any way to create a general method that receives the IQueryable and inside it does the select?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

栀梦 2025-01-21 12:59:23

您有一个接口:

interface INamed{
  string Name {get; set;}
}

您有两个不同的表实体来实现它,因为它们都有一个 Name 属性:

public class Person : INamed {
  public string Name { get; set; }
}
public class Company: INamed {
  public string Name { get; set; }
}

您有一个映射方法,它接受实现 INamed 的任何内容并踢出具有 Name 集的对象:

SomeDto Map(INamed x){
  return new SomeDto { Name = x.Name }
}

并且您可以适当地调用它:

context.Persons.Select(person => Map(person) );

context.Companies.Select(company => Map(company) );

You have an interface:

interface INamed{
  string Name {get; set;}
}

You have two different table entities that implement it because they both have a Name property:

public class Person : INamed {
  public string Name { get; set; }
}
public class Company: INamed {
  public string Name { get; set; }
}

You have a mapping method that takes anything that implements an INamed and kicks out an object with the Name set:

SomeDto Map(INamed x){
  return new SomeDto { Name = x.Name }
}

And you call it appropriately:

context.Persons.Select(person => Map(person) );

context.Companies.Select(company => Map(company) );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文