小编sco*_*oob的帖子

Crystal Reports轻松实现MS SQL Server Reporting Services转换

有没有办法轻松将Crystal Reports报表转换为Reporting Services RDL格式?我们有很多报告很快就需要转换.

我知道手动过程(基本上是在SSRS中从头开始重建所有报告),但我的搜索指出了一些与几家咨询公司自动转换"加速"的可能性.(如上所述.... - 链接坏了).

您是否对此特定问题有任何有效的经验或建议?有什么工具我不知道吗?

sql-server migration crystal-reports reporting-services

31
推荐指数
3
解决办法
5万
查看次数

Facebook GRAPH API照片计数没有分页

我试图得到FB图片的数量.我们正在计算的图片通常非常受欢迎,因此有大量的LIKES.

例如,"4年多"的奥巴马图片是Facebook上"最受欢迎"的图片,有超过400万的喜欢.

问题是GRAPH API无法响应那张图片,我们得到了计数,我将不得不翻阅整个四百万的喜欢来获得这个数字......它疯了.

https://graph.facebook.com/10151255420886749/likes

{
   "data": [
      {
         "id": "100004002885259",
         "name": "Camy Doyna"
      },
      {
         "id": "100003495050210",
         "name": "Louzoco de Carvasal"
      },
      {
         "id": "536183064",
         "name": "Emily Brearley"
      },
      {
         "id": "100002742193990",
         "name": "Rosette Gracia Moukengue"
      },
      {
         "id": "100001107540696",
         "name": "Pac\u00f4me Chazelle"
      },
      {
         "id": "100001035425365",
         "name": "Niklas Pulli"
      },
      {
         "id": "100003292089993",
         "name": "Barbara Grimm"
      },
      {
         "id": "642830020",
         "name": "Elin Vinterhed"
      },
      {
         "id": "100000718890127",
         "name": "Katya Katyusha"
      },
      {
         "id": "1644725575",
         "name": "Lara Corti"
      }, …
Run Code Online (Sandbox Code Playgroud)

count facebook-like facebook-graph-api

5
推荐指数
2
解决办法
7151
查看次数

从telerik网格中删除标题(RAZOR)

我有一个telerik网格显示2级细节,而对于第一级,我想完全删除标题.

我尝试使用样式..即:

                     column.Bound(x => x.Name)
                         .ClientTemplate("<#= Name#>")
                         .HeaderHtmlAttributes( new { style="display:none;"})
Run Code Online (Sandbox Code Playgroud)

但是我仍然在扩展上获得了一个"灰色标题",它仍然显示出一个恼人的白色层......

在此输入图像描述 如何彻底清除它?

c# asp.net telerik razor

3
推荐指数
1
解决办法
3955
查看次数

使用 Servicestack ORMLite 加载所有分层引用

有没有办法使用 servicestack / ormlite 预加载所有嵌套和子嵌套引用?

 public class Person

{

    public int Id { get; set; }

    [References(typeof(Pants))]
    public int PantsId { get; set; }

    [Reference]
    public Pants Pants { get; set; }

}

public class Pants
{

    public int Id { get; set; }

    [References(typeof(Pocket))]
    public int PocketId { get; set; }

    [Reference]
    public Pocket Pocket { get; set; }

}

public class Pocket
{

    public int Id { get; set; }

    public int Depth { get; set; }

} …
Run Code Online (Sandbox Code Playgroud)

ormlite-servicestack

3
推荐指数
1
解决办法
1811
查看次数