Click here to Skip to main content
15,887,596 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: MVC, Entity Framework, using a separate dll or assembly for website project. [solved] Pin
jkirkerx28-Oct-15 9:58
professionaljkirkerx28-Oct-15 9:58 
QuestionConverting Rows in columns Pin
byka28-Oct-15 9:32
byka28-Oct-15 9:32 
AnswerRe: Converting Rows in columns Pin
Richard Deeming28-Oct-15 10:03
mveRichard Deeming28-Oct-15 10:03 
GeneralRe: Converting Rows in columns Pin
byka28-Oct-15 10:12
byka28-Oct-15 10:12 
GeneralRe: Converting Rows in columns Pin
Richard Deeming28-Oct-15 10:13
mveRichard Deeming28-Oct-15 10:13 
GeneralRe: Converting Rows in columns Pin
byka20-Nov-15 3:22
byka20-Nov-15 3:22 
GeneralRe: Converting Rows in columns Pin
Richard Deeming23-Nov-15 1:40
mveRichard Deeming23-Nov-15 1:40 
GeneralRe: Converting Rows in columns Pin
byka24-Nov-15 4:13
byka24-Nov-15 4:13 
it worked. Now I am facing different issue when adding a new row into new table with non key columns
VB
result.Rows.Add .... item.EENAML.. etc.

Could you tell me what am I doing wrong?
Here my full code
VB
Dim data = myDataTable.AsEnumerable().GroupBy(Function(r) New With {Key .EEGRP = r.Field(Of String)("EEGRP"), Key .EESSN = r.Field(Of String)("EID")},
                     Function(key, rows) New With
                     {
                         Key .EEGRP = key.EEGRP,
                         Key .ESSN = key.EID,
                     .Dates = rows.Select(Function(r) r.Field(Of DateTime?)("DEIBCY") & ("DIIBYR") & ("D.DIIBMT") & ("DEIBDY")) _
                         .OrderByDescending(Function(d) d).Take(3).ToList()
                     })
 
                     'Create new table with original table schema
                     Dim result As New DataTable
                     result = myDataTable.Clone()
                    'Create new  row
                     For Each item In data
                         result.Rows.Add(item.EEGRP,item.EID, item.EENAML,item.EENAMF,item.EENAMM,item.EEADD1,item.EEADD2,,,, _

GeneralRe: Converting Rows in columns Pin
Richard Deeming24-Nov-15 8:48
mveRichard Deeming24-Nov-15 8:48 
GeneralRe: Converting Rows in columns Pin
byka30-Nov-15 1:57
byka30-Nov-15 1:57 
GeneralRe: Converting Rows in columns Pin
Richard Deeming30-Nov-15 2:03
mveRichard Deeming30-Nov-15 2:03 
GeneralRe: Converting Rows in columns Pin
byka30-Nov-15 3:29
byka30-Nov-15 3:29 
GeneralRe: Converting Rows in columns Pin
Richard Deeming30-Nov-15 4:03
mveRichard Deeming30-Nov-15 4:03 
GeneralRe: Converting Rows in columns Pin
byka30-Nov-15 8:54
byka30-Nov-15 8:54 
QuestionAbout ASP.Net Pin
Member 1209320927-Oct-15 20:28
Member 1209320927-Oct-15 20:28 
AnswerRe: About ASP.Net Pin
PANKAJMAURYA27-Oct-15 21:34
professionalPANKAJMAURYA27-Oct-15 21:34 
QuestionUnit testing tool for universal windows 10 app except Unit test app(universal windows) library Pin
Anjani Rajdev27-Oct-15 20:18
Anjani Rajdev27-Oct-15 20:18 
QuestionError: The parameter 'addresses' cannot be an empty string. Pin
Member 876166727-Oct-15 13:27
Member 876166727-Oct-15 13:27 
AnswerRe: Error: The parameter 'addresses' cannot be an empty string. Pin
Richard Deeming28-Oct-15 3:29
mveRichard Deeming28-Oct-15 3:29 
GeneralRe: Error: The parameter 'addresses' cannot be an empty string. Pin
Member 876166728-Oct-15 8:32
Member 876166728-Oct-15 8:32 
GeneralRe: Error: The parameter 'addresses' cannot be an empty string. Pin
Richard Deeming28-Oct-15 8:41
mveRichard Deeming28-Oct-15 8:41 
GeneralRe: Error: The parameter 'addresses' cannot be an empty string. Pin
Member 876166728-Oct-15 9:35
Member 876166728-Oct-15 9:35 
GeneralRe: Error: The parameter 'addresses' cannot be an empty string. Pin
Richard Deeming28-Oct-15 9:42
mveRichard Deeming28-Oct-15 9:42 
GeneralRe: Error: The parameter 'addresses' cannot be an empty string. Pin
Member 876166728-Oct-15 12:15
Member 876166728-Oct-15 12:15 
Questionhow to create CSS file from code behind in ASP.NET Pin
Shivendramca1026-Oct-15 2:25
Shivendramca1026-Oct-15 2:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.