Linq-To-Sql 实体的接口
这是一个非常简单的问题。我想知道是否有某种接口可以用来表示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以更改 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.