This is a migrated thread and some comments may be shown as answers.

ASYNC CALL RESULTS

0 Answers 74 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
jay
Top achievements
Rank 1
jay asked on 08 Jan 2011, 11:08 PM

Hi,
Can someone please help me out with this?

Why does my e.result from an async call's complete event return the correct number of rows BUT each row is a duplicate of the last record?

I have something like this:

  void _Model_GetMasterListComplete(object sender, EntityResultsArgs<CustomType> e)
  {

  }

 

the IQueryable my _Model_GetMasterListAsync() calls will correctly return something like this:

COL A     COL B     COL C
1                 2             3
2                 3             4
3                 4             5

 

But e.Result will be:

COL A     COL B     COL C
3                 4             5
3                 4             5
3                 4             5


thanks

Tags
General Discussions
Asked by
jay
Top achievements
Rank 1
Share this question
or