Linq-To-Sql 实体的接口

发布于 2024-12-23 22:18:57 字数 133 浏览 2 评论 0原文

这是一个非常简单的问题。我想知道是否有某种接口可以用来表示 Linq-To-Sql dbml 返回的任何实体?

所以我可以说返回诸如 IQueryable 之类的东西,然后它可以简单地返回到其正确的实体中,例如?

谢谢!

This is a pretty straight-forward question. I was wondering if there is some kind of interface I could use to represent any of the entities returned by my Linq-To-Sql dbml?

So I could let's say return things such as IQueryable and it could simply get casted back in its right entity afterward for example?

Thanks!

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

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

发布评论

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

评论(1

彼岸花似海 2024-12-30 22:18:57

您可以更改 Linq to Sql 实体的代码生成。 在这里您可以找到 Linq to Sql 的 T4 模板。

如果使用它们,您可以让所有实体实现特定的接口。

或者,您可以在每个实体的分部类上的另一个代码文件中实现该接口。

You can change the code generation for your Linq to Sql entities. Here you can find T4 templates for Linq to Sql.

If you use those, you can let all entities implement a specific interface.

Or you could implement the interface in another code file on the partial class for each entity.

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