除算を適用した後に列の値を切り捨てたい:
DataColumn maxSpend = new DataColumn();
maxSpend.DataType = System.Type.GetType("System.Double");
maxSpend.Expression = string.Format("{0:0.00} / price", this.maxSpend);
どういうわけか、列式で Math.floor() を使用することは可能ですか、これに対する他の解決策はありますか?