Click here to Skip to main content
15,881,559 members
Home / Discussions / C#
   

C#

 
GeneralRe: c# windows form & google api v3 Pin
loyal ginger3-May-12 15:51
loyal ginger3-May-12 15:51 
GeneralRe: c# windows form & google api v3 Pin
mrx1004-May-12 1:32
mrx1004-May-12 1:32 
GeneralRe: c# windows form & google api v3 Pin
loyal ginger4-May-12 2:32
loyal ginger4-May-12 2:32 
GeneralRe: c# windows form & google api v3 Pin
mrx1007-May-12 1:50
mrx1007-May-12 1:50 
QuestionNeed help in writing code on establish a PPTP (VPN Tunnel) connection in c#. Pin
kalyan_vb2-May-12 0:14
kalyan_vb2-May-12 0:14 
AnswerRe: Need help in writing code on establish a PPTP (VPN Tunnel) connection in c#. Pin
Richard MacCutchan2-May-12 2:41
mveRichard MacCutchan2-May-12 2:41 
QuestionRequesting for a snippet that can be used in LINQ to SQL query Pin
Nadia Monalisa1-May-12 20:48
Nadia Monalisa1-May-12 20:48 
AnswerRe: Requesting for a snippet that can be used in LINQ to SQL query Pin
Keith Barrow2-May-12 2:23
professionalKeith Barrow2-May-12 2:23 
You need to re-write the predicate a little bit (I don't have time to check this, so consider it not-very psuedo psuedo code) and it might error:

C#
DateTime latestSendDate = DateTime.Now.AddDays(-30);
int totalSentEmailsOlderThanMonth = emailSendingService.ListSentEmails().Count(x => x.SentDateTime <= latestSendDate);


This removes the "calculation" from the LINQ query count predicate and puts it into a format it should be able to generate SQL from. There may be an out by one error (you get 29/31 days).

I think this will work, as I say, I don't have time to check it. Let me know if there are any problems.

GeneralRe: Requesting for a snippet that can be used in LINQ to SQL query Pin
Nadia Monalisa2-May-12 4:32
Nadia Monalisa2-May-12 4:32 
QuestionSIFT Pin
ri19871-May-12 20:05
ri19871-May-12 20:05 
AnswerRe: SIFT Pin
AmbiguousName1-May-12 20:09
AmbiguousName1-May-12 20:09 
AnswerRe: SIFT Pin
egenis1-May-12 20:09
egenis1-May-12 20:09 
AnswerRe: SIFT Pin
Abhinav S1-May-12 20:27
Abhinav S1-May-12 20:27 
GeneralRe: SIFT Pin
ri19871-May-12 21:48
ri19871-May-12 21:48 
GeneralRe: SIFT Pin
ri19872-May-12 21:13
ri19872-May-12 21:13 
GeneralRe: SIFT Pin
ri19872-May-12 21:16
ri19872-May-12 21:16 
JokeRe: SIFT Pin
PIEBALDconsult2-May-12 11:05
mvePIEBALDconsult2-May-12 11:05 
GeneralRe: SIFT Pin
Pete O'Hanlon2-May-12 11:32
mvePete O'Hanlon2-May-12 11:32 
GeneralRe: SIFT Pin
Member 1239536924-Apr-16 23:11
Member 1239536924-Apr-16 23:11 
QuestionHow to Override FileSystemInfo Class Readonly properties (Exists, Extension, Name, and etc)? Pin
ShadowUz1-May-12 19:34
ShadowUz1-May-12 19:34 
AnswerRe: How to Override FileSystemInfo Class Readonly properties (Exists, Extension, Name, and etc)? Pin
egenis1-May-12 20:05
egenis1-May-12 20:05 
QuestionShowingTabs After Authentication Pin
AmbiguousName1-May-12 19:03
AmbiguousName1-May-12 19:03 
AnswerRe: ShowingTabs After Authentication Pin
Eddy Vluggen2-May-12 0:02
professionalEddy Vluggen2-May-12 0:02 
Questionembed javascript code in c# Pin
mrx1001-May-12 12:02
mrx1001-May-12 12:02 
AnswerRe: embed javascript code in c# Pin
Dave Kreskowiak1-May-12 13:27
mveDave Kreskowiak1-May-12 13:27 

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.