Silverlight PivotViewer 动态集合最佳实践

发布于 2024-11-06 18:01:59 字数 476 浏览 0 评论 0原文

我是 Silverlight PivotViewer 的新手。我的目标是为数据库中的每笔销售创建一个图像。该图像包含销售代表、销售日期、发票金额、客户等数据。我使用 Html 模板方法 请参阅此处,我已成功使用这种方法生成图像。

我这几年的销量是几十万。我需要能够根据不同的条件查询销售子集。我的流程是在生成销售时,我通过 Html 模板创建销售图像并将该图像保存到文件系统。我的愿景是创建一个 UI,用户可以在其中输入过滤条件(销售日期范围、销售代表等)并生成已保存图像的集合并在 Silverlight Pivotviewer 中显示它们。最好的方法是什么?

我最初的想法是在用户输入过滤条件后动态生成 cxml 文件。这是最好的方法吗?非常感谢任何帮助。谢谢。

I'm new to Silverlight PivotViewer. My goal is to create an image for each sale in my database. The image is to contain data for the sales rep, sale date, invoice amount, customer, etc. I'm using the Html template approach see here and am having success generating images with this approach.

My sales volume over the past couple of years is several hundred thousand sales. I need to be able to query subsets of sales based on different criteria. My process is as sales are generated, I'm creating the sale image via Html template and saving that image to file system. My vision is to create a UI where user can enter filtering criteria (sales date range, sales rep, etc)and produce a collection of saved images and display them in Silverlight Pivotviewer. What's the best way to do this?

My initial thought is to generate the cxml file on the fly after the user enters filtering criteria. Is this the best approach? Any help is much appreciated. Thanks.

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

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

发布评论

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

评论(2

感性不性感 2024-11-13 18:01:59

我已经使用 Microsoft 的 PivotServerTools 成功完成了 Silverlight PivotViewer。我动态创建图像并从数据库中检索数据。这是一个可以帮助您的链接。 PivotServerTools

I have successfully done a Silverlight PivotViewer using PivotServerTools from Microsoft. I dynamically create the Images and retrieve the data from a database. Here is a link to help you out. PivotServerTools

月牙弯弯 2024-11-13 18:01:59

您可能已经解决了这个问题,但您正在走正确的道路。图像生成是该过程中最困难且成本最高的部分。通过在创建数据时生成图像,您可以节省大量加载时间。 CXML 生成快速且相当容易。因此,我将遵循您所在的路径:过滤器的动态 CXML 生成和图像的创建生成。

托尼

You might have already resolved this, but you are heading down the correct path. The image generation is the most difficult and costly part of the process. By generating the images as the data is created you are saving yourself a lot of load time. CXML generation is quick and fairly easy. So I would follow the path that you are on: dynamic CXML generation off of filters and oncreated generation of the images.

Tony

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文