I am new in Silverlight MVVM, I am creating a project where I am binding a data in to DataGrid.

Here is my database structure:

  • tblAuthorizationVarification (AuthorizationVarificationid, AuthorizationRequestid, number)

  • tblAuthorizationRequest (AuthorizationRequestid, name)

  • tblAuthorizationVarificationDetails (DetailId, AuthorizationRequestid, Amount)

I want to show Total of Amount in gridview for all authorization.

Below is my code, in ViewModel class, I'm getting tblAuthorizationRequest from tblAuthorizationVarification:

PagedCollectionView _AuthorizationVarificationList;

public PagedCollectionView AuthorizationVarificationList
{
  get { return _AuthorizationVarificationList; }
  set 
  {
     _AuthorizationVarificationList = value;
     OnPropertyChanged("AuthorizationVarificationList"); }
  }

  private void GetVarifications()
  {
    IsBusy = true;
    LoadOperation<AuthorizationVerification> loadOp = 
                          objContext.Load(objContext.GetCreditNotesQuery());

    loadOp.Completed += (sender, e) =>
    {
       IEnumerable<AuthorizationVerification> op = 
               ((LoadOperation<AuthorizationVerification>)sender).Entities;
       PagedCollectionView view = new PagedCollectionView(op);
       this.AuthorizationVarificationList = view;
       cnt = cnt - 1;
       if (cnt <= 0)
         IsBusy = false;
    };
  }

AuthorizationVarificationList is binding in Gridview as like

<sdk:DataGrid x:Name="grdCreditNotes" 
    ItemsSource="{Binding Path=AuthorizationVarificationList}" 
    SelectedItem="{Binding Path=SelectedCreditNote, Mode=TwoWay}" 
    AutoGenerateColumns="False" IsReadOnly="True" Grid.Row="2" 
    VerticalAlignment="Stretch" Margin="0,0,0,0">

    <sdk:DataGrid.Columns>
      <sdk:DataGridTextColumn Header="Credit No" 
         Binding="{Binding Path=AuthorizationVerificationId}" Width="200"/>

      <sdk:DataGridTextColumn Header="Amount" 
         Binding="{Binding Path=AuthorizationRequest.Amount}" MinWidth="100" 
         Width="*"/>

    </sdk:DataGrid.Columns>    
</sdk:DataGrid>

What can I do for display sum of amount of particular Authorization in this field of grid?

link|improve this question

@Tim Post thanks, can u please give me answer.. its urgent for me... – Viral Sarvaiya Nov 22 '11 at 7:18
You are on StackOverflow already for 1 year, could you please format your question yourself? It is really hard to read and understand. Especially which proeprties is exposed by ViewModel and what is Particular Auth – sll Nov 22 '11 at 15:24
@sll : Can u give me answer of my question if u understood my question, its very urgent for me to get solution of the problem. and thanks for the notifying me for my mistake. – Viral Sarvaiya Nov 22 '11 at 20:15
All are only editing my question, please answer me too... – Viral Sarvaiya Nov 23 '11 at 9:33
What you want to display? Value of the AuthorizationRequest.Amount? I do not see AuthorizationRequest in the ViewModel, where from it comes up? – sll Nov 23 '11 at 9:54
show 5 more comments
feedback

2 Answers

As I've already suggested, you can create a view model class for the collection item and populate it as it should be.

public class VerificationViewModel
{
    public int AuthorizationVerificationId { get; set; }

    public double Amount { get; set; }
}

Then use the LINQ-query which groups the collection and returns summarized items:

loadOp.Completed += (sender, e) =>
{
   IEnumerable<AuthorizationVerification> op = 
           ((LoadOperation<AuthorizationVerification>)sender).Entities;

   var models = op.GroupBy(item => item.AuthorizationVerificationId)
                  .Select(g => new VerificationViewModel
                                { 
                                    AuthorizationVerificationId = g.Key, 
                                    Amount = g.Sum(gi => gi.Amount) 
                                })
                  .ToList();

   PagedCollectionView view = new PagedCollectionView(models);
   // Everything else is the same
}

//Also change the type of the property which is bound to SelectedItem
public VerificationViewModel SelectedCreditNote { get; set; }

And change the binding path of the second column:

<sdk:DataGrid.Columns>
  <sdk:DataGridTextColumn Header="Credit No" 
     Binding="{Binding Path=AuthorizationVerificationId}" Width="200"/>

  <sdk:DataGridTextColumn Header="Amount" 
     Binding="{Binding Path=Amount}" MinWidth="100" Width="*"/>

</sdk:DataGrid.Columns>   

This code should calculate the sum of the Amount for each Id. If you want some other aggregation, you can change the linq query.

link|improve this answer
gi => gi.Amount directly i can not do that, i get list of AuthorizationVarificationList and from that i have to get AuthorizationRequest and then from it i get object of AuthorizationVarificationDetails and then i have to do sum of amount of that. For that i write Amount = Convert.ToDouble(g.Sum(gi=>gi.AuthorizationRequest.AuthorizationMaintenanceDetai‌​ls.Sum(a=>a.AuthorizationAmount))) but it cant come perfact amount. hope u understood well my problem now. – Viral Sarvaiya Nov 24 '11 at 6:43
@ViralSarvaiya Maybe you haven't loaded all foreign key relations, I think that the issue is in the gi.AuthorizationRequest.AuthorizationMaintenanceDetai‌​ls line. Use the Include function like it was described here: stackoverflow.com/questions/5332163/…, it must help. – vorrtex Nov 24 '11 at 10:40
i have done that... – Viral Sarvaiya Nov 24 '11 at 11:51
feedback

If I understand correctly you are after a Summary Row? If so, please check out the following link http://leeontech.wordpress.com/2010/02/01/summary-row-in-datagrid/. You will may need to shape your Model objects behind ViewModels a little better (It is rarely good practice to show Models (DTOs in this case) directly to the View).

link|improve this answer
i have not summary column, only one column that display sum of the amount. – Viral Sarvaiya Nov 23 '11 at 12:54
in this link, there are a header which shows total, but i want to show in records not in header. – Viral Sarvaiya Nov 30 '11 at 12:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.