使用 linqpad Dump 时禁用数字属性的总计
(我是 linqpad 的新手)。当仅使用“转储”扩展来显示对象图时,如果我的对象有一个具有数字属性的集合(例如具有数字 Id 的书籍集合),则该集合中所有书籍的 Book.Id 都会总计。有没有办法禁用这种默认行为?
(I'm new to linqpad). When using the 'Dump' extension simply to display an object graph, if my object has a collection with numeric properties, say a collection of Books with a numeric Id, the Book.Id gets totaled for all books in that collection. Is there a way to disable this default behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LINQPad 不会显示它知道为主键的列的总计,但除此之外它无法知道该信息可能没有用。
如果您的 books 表在 ID 上没有主键,另一个问题是您将无法通过 LINQ 更新它。
LINQPad doesn't show totals on columns it knows to be a primary key, but otherwise it has no way of knowing that that information isn't potentially useful.
If your books table doesn't have a primary key on ID, another issue is that you won't be able to update it via LINQ.