我正在尝试使用Crystal Report生成报告,我需要使用Group by和Sum以便根据需要获取数据。如何将此查询放在CR上或至少将CR配置为像查询一样工作。
查询:
public static void ConvertByteExample()
{
byte[] imageData = File.ReadAllBytes("example.b64");
string encodedString = System.Text.Encoding.UTF8.GetString(imageData); //<-- do this
byte[] convertedData = Convert.FromBase64String(encodedString);
File.WriteAllBytes("output2.png", convertedData);
}
在CR中我已经知道如何把句子放在哪里,如果可能的话,我需要知道如何把“分组依据”句子。