带有计算但没有过滤器的 SUM 数据表列

发布于 2024-12-05 09:16:21 字数 245 浏览 0 评论 0原文

当我将一个项目放入其中进行过滤时,这似乎有效,但我不想添加过滤器,即只是乐意对列求和,仅此而已。

我尝试传递 string.empty 和 "" 但没有喜悦:

object objColTotal;
objColTotal = _dataSetDataTable.Compute("Sum(Price)", "");
decimal tot = Convert.ToDecimal(objColTotal);

this seems to work when i put an item in it to filter, but i don't want to add a filter, ie just happy to sum the column and that's it.

i've tried passing in string.empty and "" but no joy:

object objColTotal;
objColTotal = _dataSetDataTable.Compute("Sum(Price)", "");
decimal tot = Convert.ToDecimal(objColTotal);

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

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

发布评论

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

评论(2

奈何桥上唱咆哮 2024-12-12 09:16:21

空字符串应该可以工作。

您始终可以使用您确定将包含您的所有记录的过滤器。


对小数列进行快速测试:

var dt = new DataTable();
dt.Columns.Add("DecCol1", typeof(decimal));
dt.Columns.Add("StrCol1");
dt.Rows.Add(new object[] { 1.1, "r1"});
dt.Rows.Add(new object[] { 2.2, "r2" });
dt.Rows.Add(new object[] { 3.3, "r3" });

object sum = dt.Compute("SUM(DecCol1)", "");
Console.WriteLine(sum);

我得到正确答案:6.6

An empty string should work.

You can always use a filter that you are certain will include all your records.


Quick test on a Decimal column:

var dt = new DataTable();
dt.Columns.Add("DecCol1", typeof(decimal));
dt.Columns.Add("StrCol1");
dt.Rows.Add(new object[] { 1.1, "r1"});
dt.Rows.Add(new object[] { 2.2, "r2" });
dt.Rows.Add(new object[] { 3.3, "r3" });

object sum = dt.Compute("SUM(DecCol1)", "");
Console.WriteLine(sum);

I get the correct answer: 6.6

半衬遮猫 2024-12-12 09:16:21

注意 2 件事:

  • 如果您的列名有空格,则必须使用括号,并且不接受单引号或双引号。
  • 另请注意,Compute 返回一个对象,该对象用某些 (int) 向上转换会产生错误,并且您必须使用其他方法,例如下面的示例

int Dones = int.Parse(dt.Compute("sum(Done)", "").ToString());
int InProgresss = int.Parse(dt.Compute("sum([In Progress])", "").ToString())

note 2 things

  • if your column name have space you must use brackets and single or double quotation is not accepted.
  • also note that Compute returns an object which upcasting it with something (int) gives an error and you must use other methods like the samples below

samples:

int Dones = int.Parse(dt.Compute("sum(Done)", "").ToString());
int InProgresss = int.Parse(dt.Compute("sum([In Progress])", "").ToString())
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文