Click here to Skip to main content
15,886,052 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Not able to connect to SQLite database if share is hidden Pin
Eddy Vluggen29-Nov-19 14:51
professionalEddy Vluggen29-Nov-19 14:51 
GeneralAnalytics Tool to Integrate with my application Pin
Supratik De20-Nov-19 19:18
Supratik De20-Nov-19 19:18 
GeneralRe: Analytics Tool to Integrate with my application Pin
Pete O'Hanlon20-Nov-19 20:50
mvePete O'Hanlon20-Nov-19 20:50 
QuestionChanging the Include function of Entity Framework if association table is added Pin
simpledeveloper20-Nov-19 7:32
simpledeveloper20-Nov-19 7:32 
AnswerRe: Changing the Include function of Entity Framework if association table is added Pin
Richard MacCutchan20-Nov-19 9:01
mveRichard MacCutchan20-Nov-19 9:01 
GeneralRe: Changing the Include function of Entity Framework if association table is added Pin
simpledeveloper20-Nov-19 10:30
simpledeveloper20-Nov-19 10:30 
GeneralRe: Changing the Include function of Entity Framework if association table is added Pin
simpledeveloper21-Nov-19 6:51
simpledeveloper21-Nov-19 6:51 
QuestionUsing Linq Join within the Where clause of another Linq Query Pin
simpledeveloper19-Nov-19 9:44
simpledeveloper19-Nov-19 9:44 
I want to have Linq Query as below, but the not able to, its giving me compile time error any help please? The error is "inference failed to call the Join" - any help please? I want to use join within where clause of other query, is that possible? Thanks in advance.
Case _case = (from x in this.Context().CaseRepository.GetAll()
                              where (from g in x.Violations
                                     join a in this.Context().OneToManyRepository.GetAll().Where(a => a.ParentEntity == "Notice" && a.ChildEntity == "Violation") 
                                     on new { g.ViolationId, this.NOVId } equals new { a.ChildEntityId, a.ParentId }
                                     where g.CaseId == x.CaseId 
                                     select g).Count() > 0
                              select x).FirstOrDefault();

                this.TriggerMetaDataUpdate<Case>(_case);
                this.TriggerMetaDataUpdate<InspectionResult>(this.InspectionResult);

AnswerRe: Using Linq Join within the Where clause of another Linq Query Pin
Gerry Schmitz20-Nov-19 7:00
mveGerry Schmitz20-Nov-19 7:00 
GeneralRe: Using Linq Join within the Where clause of another Linq Query Pin
simpledeveloper20-Nov-19 7:33
simpledeveloper20-Nov-19 7:33 
QuestionDropping Columns referenced by other Tables Pin
simpledeveloper19-Nov-19 6:57
simpledeveloper19-Nov-19 6:57 
AnswerRe: Dropping Columns referenced by other Tables Pin
Gerry Schmitz20-Nov-19 6:54
mveGerry Schmitz20-Nov-19 6:54 
GeneralRe: Dropping Columns referenced by other Tables Pin
simpledeveloper20-Nov-19 7:39
simpledeveloper20-Nov-19 7:39 
GeneralRe: Dropping Columns referenced by other Tables Pin
simpledeveloper21-Nov-19 16:36
simpledeveloper21-Nov-19 16:36 
QuestionLinq to check before it creates select Pin
simpledeveloper15-Nov-19 14:04
simpledeveloper15-Nov-19 14:04 
SuggestionRe: Linq to check before it creates select Pin
Richard Deeming17-Nov-19 22:47
mveRichard Deeming17-Nov-19 22:47 
QuestionVB6 dll calls from WCF Pin
Emanuela Meraglia8-Nov-19 0:31
Emanuela Meraglia8-Nov-19 0:31 
AnswerRe: VB6 dll calls from WCF Pin
Richard MacCutchan8-Nov-19 1:30
mveRichard MacCutchan8-Nov-19 1:30 
GeneralRe: VB6 dll calls from WCF Pin
Emanuela Meraglia8-Nov-19 2:11
Emanuela Meraglia8-Nov-19 2:11 
AnswerRe: VB6 dll calls from WCF Pin
Richard Deeming8-Nov-19 1:31
mveRichard Deeming8-Nov-19 1:31 
GeneralRe: VB6 dll calls from WCF Pin
Emanuela Meraglia8-Nov-19 2:11
Emanuela Meraglia8-Nov-19 2:11 
GeneralRe: VB6 dll calls from WCF Pin
Richard Deeming8-Nov-19 3:32
mveRichard Deeming8-Nov-19 3:32 
GeneralRe: VB6 dll calls from WCF Pin
Emanuela Meraglia8-Nov-19 3:44
Emanuela Meraglia8-Nov-19 3:44 
GeneralRe: VB6 dll calls from WCF Pin
Emanuela Meraglia8-Nov-19 2:14
Emanuela Meraglia8-Nov-19 2:14 
GeneralRe: VB6 dll calls from WCF Pin
simpledeveloper20-Nov-19 7:49
simpledeveloper20-Nov-19 7:49 

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.