Hello,
I am trying to bind xamdatagrid using WCF service. My single stored procedure gets all the data.But its not in the parent-child format.Just no of records.
Code in WCF service:
Public Function Raise_Request_Records_Summary(ByVal Completion_Level As Int16) As DataTable Implements WCF_Service_Pay_Raise_Request.Raise_Request_Records_Summary
Try
Dim SQL_Statement As String = "EXEC STORED PROCEDURE"
MySQLCommand.Parameters(0).Value = Completion_Level
MyDataAdapter.Fill(TempTable)
Result = TempTable.Clone
'Cleanup!
MyDataAdapter.Dispose()
MySQLCommand.Dispose()
MySQLConnection.Dispose()
Result.TableName = "Raise_Request_Records_Summary"
End Function
CODE IN THE PAGE_LOADED:
If chk_Hide_Closed.IsChecked Then Completion_Level = 1
Client.Close()
I NEED GRID TO DISPLAY THIS:
Band1: Name(ABC), Submitted on
Band2: All the data under(ABC)
How can I achieve this ? I donot get plus sign ??