1

我正在做一个从 oracle 数据库读取的项目。我使用了 Silverlight RIA 和自动生成的 DomainService,因为我不太关心结构化,因为我只担心显示数据。

我的问题是,当我使用 XAML 中的 domaindatasource 并使用 fiddler 调试 WCF 服务及其调用时,useraccounts 表中的第一组数据包含 200 万行,并且 DomainService 超时。

现在我尝试将服务的超时时间增加到 20 分钟,但仍然无济于事,我收到错误消息:

查询“GETUA_USERACCOUNTS”的加载操作失败。http 请求已超过分配的超时时间

在我使用的总共 9 个表中,3 个表有大约 200 万行,解决这个问题的最佳方法是什么?

4

4 回答 4

1

使用 ToTraceString 方法...

http://msdn.microsoft.com/en-us/library/system.data.objects.objectquery.totracestring.aspx

...或 Oracle 分析工具来确定正在使用的 SQL 语句并确认它需要很长时间才能执行。

使用查询优化技术,例如添加索引来加快速度。

或者,编写一个以更有效的方式返回所需结果的存储过程。

于 2011-08-23T14:08:21.477 回答
0

您应该使用 DataPager,请参见此处:http ://www.silverlightshow.net/items/Creating-applications-with-.NET-RIA-Services-Part-4-Adding-a-DomainDataSource.aspx

<navigation:Page x:Class="WebAdministrationTool.ManageUsers" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:ria="clr-namespace:System.Windows.Controls;assembly=System.Windows.Ria.Controls"
    xmlns:local="..."
    xmlns:validation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data.DataForm">

    <Grid x:Name="LayoutRoot">

        <data:DataGrid x:Name="UsersGrid" 
                       IsReadOnly="True" 
                       AutoGenerateColumns="True"
                       ItemsSource="{Binding Data, ElementName=MyDataSource}" />

        <validation:DataPager x:Name="UsersPager"
                              PageSize="10" 
                              Source="{Binding Data, ElementName=MyDataSource}" />

        <ria:DomainDataSource x:Name="MyDataSource" LoadMethodName="LoadHugeAmountOfRows">
            <ria:DomainDataSource.DomainContext>
                <local:MyDomainContext />
            </ria:DomainDataSource.DomainContext>
        </ria:DomainDataSource>

    </Grid>

</navigation:Page>
于 2011-08-23T13:25:36.550 回答
0

要从 TomTom 停止的地方继续,Red 询问,在返回结果之前在服务器上进行数据过滤/处理(伪代码)

public IQueriable<UserDTO> GetUserAccountDetails(string UserID)
{
    DataSet oneBazillionRows = SQLServer.GetAllUserRows();

    // LINQ to the rescue
    return from user in oneBillionRows
           where user.ID = UserID;
}

和你的消费者:

public void GetUserInfo()
{
    ServiceContext context = new ServiceContext();
    context.Load<UserDTO>(ServiceContext.GetUserAccountDetailsQuery(), load =>
    {
        // do some work here
        //like signalling the call is complete
        // or storing the data in your View Model
    }, null);
}

然后,您的消费者将只收到一个数据行。基本形式是这样的:

public IQueriable<ReturnType> WebService(Parameter parameter, ...)
{
    // Do all your work here, return minimal results
}

考虑一下:服务器总是比您的客户端机器强大得多。让它完成过滤/排序/预处理结果的所有工作,并让它交出最少的数据。您会发现您的 RIA 实现变得更加灵活。

于 2011-08-23T21:56:15.637 回答
0

我有类似的问题,为了处理这个问题,我在我的数据库上创建了存储过程来完成这项工作,并且只吐回我需要的信息。没有太多关于向 RIA 添加存储过程的信息,但这里是我所知道的工作的一个镜头。

  1. 创建您的存储过程
  2. 更新项目中的数据库模型以包含存储过程
  3. 在模型浏览器中右键单击并添加功能导入。在这里你可以命名并决定如何返回数据(让你自己轻松并尝试返回一个已经在你的 DomainService.metadata.cs 文件中的对象)
  4. 如果创建新的返回对象,请将其添加到您的 DomainService.metadata.cs 文件
  5. 在您的域服务中添加一个返回结果列表的公共方法。

    public IQueryable<FWCUser> UpdateFWCUserWithUserProfileID(int userProfileID, int fwcUserID)
    {
       return this.ObjectContext.UpdateFWCUserWithUserProfileID(userProfileID, fwcUserID).AsQueryable();
    }
    
  6. 构建您的项目并根据需要从后面的代码中调用该方法

    FWCDomainContext context = new FWCDomainContext();
    context.Load(context.UpdateFWCUserWithUserProfileIDQuery(num1, num2), Completed, null);
    
于 2011-08-25T07:16:57.490 回答