Click here to Skip to main content
15,889,724 members
Home / Discussions / C#
   

C#

 
AnswerRe: how to check if value exists in database from textbox c# Pin
Gerry Schmitz27-Nov-19 7:15
mveGerry Schmitz27-Nov-19 7:15 
AnswerRe: how to check if value exists in database from textbox c# Pin
Shraddha_Patel16-Dec-19 22:30
Shraddha_Patel16-Dec-19 22:30 
AnswerRe: how to check if value exists in database from textbox c# Pin
Roland Skeyhill27-Jan-20 19:50
Roland Skeyhill27-Jan-20 19:50 
Questionplotting a point graph for a continuous real time data in c# windows form application Pin
Member 1465244924-Nov-19 22:48
Member 1465244924-Nov-19 22:48 
QuestionRe: plotting a point graph for a continuous real time data in c# windows form application Pin
Richard MacCutchan24-Nov-19 23:16
mveRichard MacCutchan24-Nov-19 23:16 
AnswerRe: plotting a point graph for a continuous real time data in c# windows form application Pin
Member 1465244925-Nov-19 0:28
Member 1465244925-Nov-19 0:28 
GeneralRe: plotting a point graph for a continuous real time data in c# windows form application Pin
Richard MacCutchan25-Nov-19 1:04
mveRichard MacCutchan25-Nov-19 1:04 
QuestionNeed Help With Syntax Pin
Kevin Marois23-Nov-19 10:01
professionalKevin Marois23-Nov-19 10:01 
I have this code in my DAL:
public async Task<IList<CompanyHeaderEntity>> GetCompanyHeadersAsync()
{
    var t = await Task.Factory.StartNew(() =>
    {
        List<CompanyHeaderEntity> results = new List<CompanyHeaderEntity>();

        using (var db = GetDataContext())
        {
            try
            {
                results = (from c in db.Companies
                            where !c.DeletedDT.HasValue
                            select new CompanyHeaderEntity
                            {
                                Id = c.Id,
                                CompanyName = c.CompanyName
                            }).OrderBy(x => x.CompanyName).ToList();
            }
            catch (Exception e)
            {
                throw;
            }

            return results;
        }
    });

    return t;
}
What I'd like to do is pass in a delegate, so that I could say "Give me all Companies where [whatever]." But in all cases, I want to include the WHERE clause I already have in there.
where !c.DeletedDT.HasValue
So I somehow need to append the deleted check to whatever I pass in.

What's the right way to do this?
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.

AnswerRe: Need Help With Syntax Pin
phil.o23-Nov-19 10:25
professionalphil.o23-Nov-19 10:25 
GeneralRe: Need Help With Syntax Pin
Kevin Marois23-Nov-19 10:40
professionalKevin Marois23-Nov-19 10:40 
GeneralRe: Need Help With Syntax Pin
Kevin Marois23-Nov-19 10:58
professionalKevin Marois23-Nov-19 10:58 
GeneralRe: Need Help With Syntax Pin
phil.o23-Nov-19 11:29
professionalphil.o23-Nov-19 11:29 
RantRe: Need Help With Syntax Pin
Kevin Marois23-Nov-19 12:26
professionalKevin Marois23-Nov-19 12:26 
GeneralRe: Need Help With Syntax Pin
phil.o23-Nov-19 12:45
professionalphil.o23-Nov-19 12:45 
QuestionDeleting textbox created dynamically, using delete key, while there are more than 1 textbox that have been dragged and dropped on a picture box. Pin
Member 443266022-Nov-19 1:14
Member 443266022-Nov-19 1:14 
AnswerRe: Deleting textbox created dynamically, using delete key, while there are more than 1 textbox that have been dragged and dropped on a picture box. Pin
OriginalGriff22-Nov-19 1:31
mveOriginalGriff22-Nov-19 1:31 
GeneralRe: Deleting textbox created dynamically, using delete key, while there are more than 1 textbox that have been dragged and dropped on a picture box. Pin
Member 443266023-Nov-19 3:07
Member 443266023-Nov-19 3:07 
GeneralRe: Deleting textbox created dynamically, using delete key, while there are more than 1 textbox that have been dragged and dropped on a picture box. Pin
OriginalGriff23-Nov-19 4:00
mveOriginalGriff23-Nov-19 4:00 
GeneralRe: Deleting textbox created dynamically, using delete key, while there are more than 1 textbox that have been dragged and dropped on a picture box. Pin
Member 443266023-Nov-19 19:16
Member 443266023-Nov-19 19:16 
QuestionDifferences of 3 libraries in voice programming ? Pin
Member 245846721-Nov-19 15:55
Member 245846721-Nov-19 15:55 
AnswerRe: Differences of 3 libraries in voice programming ? Pin
Richard MacCutchan21-Nov-19 21:33
mveRichard MacCutchan21-Nov-19 21:33 
GeneralRe: Differences of 3 libraries in voice programming ? Pin
OriginalGriff21-Nov-19 22:51
mveOriginalGriff21-Nov-19 22:51 
GeneralRe: Differences of 3 libraries in voice programming ? Pin
Richard MacCutchan21-Nov-19 23:05
mveRichard MacCutchan21-Nov-19 23:05 
GeneralRe: Differences of 3 libraries in voice programming ? Pin
phil.o22-Nov-19 7:03
professionalphil.o22-Nov-19 7:03 
GeneralRe: Differences of 3 libraries in voice programming ? Pin
Member 245846724-Nov-19 14:25
Member 245846724-Nov-19 14: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.