Click here to Skip to main content
15,905,912 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: web API - C# Pin
Kornfeld Eliyahu Peter3-Oct-13 3:03
professionalKornfeld Eliyahu Peter3-Oct-13 3:03 
GeneralRe: web API - C# Pin
miss7863-Oct-13 3:48
miss7863-Oct-13 3:48 
GeneralRe: web API - C# Pin
Kornfeld Eliyahu Peter3-Oct-13 9:45
professionalKornfeld Eliyahu Peter3-Oct-13 9:45 
GeneralRe: web API - C# Pin
miss7868-Oct-13 1:20
miss7868-Oct-13 1:20 
GeneralRe: web API - C# Pin
Kornfeld Eliyahu Peter8-Oct-13 1:32
professionalKornfeld Eliyahu Peter8-Oct-13 1:32 
GeneralRe: web API - C# Pin
miss7868-Oct-13 2:26
miss7868-Oct-13 2:26 
GeneralRe: web API - C# Pin
Kornfeld Eliyahu Peter8-Oct-13 19:55
professionalKornfeld Eliyahu Peter8-Oct-13 19:55 
GeneralRe: web API - C# Pin
miss78610-Oct-13 5:18
miss78610-Oct-13 5:18 
Apology for the late response.

I partially go the code to work. as it now display's yesterday's data feed.
However, I have weekday dates data stored on server and when I call data from now.date Monday, I get a null list on the client-side.

Is their any example, where I can use to get yesterday's date data excluding weekend dates?

<pre lang="c#">public IEnumerable<database_BWICs> GetDate()
        {
            DateTime yesterday = DateTime.Today.AddDays(-1);

            var data = from c in db.database_BWICs
                       where c.UploadDate == yesterday
                       select c;
            return data.ToList();
        }


Thank you so much for your support and generous gesture.
I really appreciate your time and help.
GeneralRe: web API - C# Pin
Kornfeld Eliyahu Peter10-Oct-13 5:32
professionalKornfeld Eliyahu Peter10-Oct-13 5:32 
SuggestionSomeone - Please sell me on MVC Pin
L Viljoen2-Oct-13 23:57
professionalL Viljoen2-Oct-13 23:57 
GeneralRe: Someone - Please sell me on MVC Pin
Kornfeld Eliyahu Peter8-Oct-13 1:52
professionalKornfeld Eliyahu Peter8-Oct-13 1:52 
GeneralRe: Someone - Please sell me on MVC Pin
L Viljoen9-Oct-13 1:17
professionalL Viljoen9-Oct-13 1:17 
GeneralRe: Someone - Please sell me on MVC Pin
Kornfeld Eliyahu Peter9-Oct-13 1:29
professionalKornfeld Eliyahu Peter9-Oct-13 1:29 
GeneralRe: Someone - Please sell me on MVC Pin
João Márcio Prado17-Oct-13 10:52
João Márcio Prado17-Oct-13 10:52 
GeneralRe: Someone - Please sell me on MVC Pin
Kornfeld Eliyahu Peter17-Oct-13 19:46
professionalKornfeld Eliyahu Peter17-Oct-13 19:46 
QuestionRadWindow does not display Pin
Steve Holdorf1-Oct-13 14:03
Steve Holdorf1-Oct-13 14:03 
AnswerRe: RadWindow does not display Pin
Kornfeld Eliyahu Peter2-Oct-13 20:37
professionalKornfeld Eliyahu Peter2-Oct-13 20:37 
Questionslideshow Pin
crood29-Sep-13 19:56
crood29-Sep-13 19:56 
AnswerRe: slideshow Pin
Richard MacCutchan29-Sep-13 21:33
mveRichard MacCutchan29-Sep-13 21:33 
AnswerRe: slideshow Pin
Abhinav S30-Sep-13 18:37
Abhinav S30-Sep-13 18:37 
QuestionSelect data on the basis of URL. Pin
webmas128-Sep-13 1:11
professionalwebmas128-Sep-13 1:11 
AnswerRe: Select data on the basis of URL. Pin
Richard MacCutchan29-Sep-13 21:31
mveRichard MacCutchan29-Sep-13 21:31 
AnswerRe: Select data on the basis of URL. Pin
David Mujica30-Sep-13 2:13
David Mujica30-Sep-13 2:13 
AnswerRe: Select data on the basis of URL. Pin
Govindaraj Rangaraj30-Sep-13 23:29
Govindaraj Rangaraj30-Sep-13 23:29 
QuestionHow to Handle Null using LINQ during Datatable CrossJoin C# Pin
priyaahh27-Sep-13 0:51
priyaahh27-Sep-13 0:51 

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.