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

.NET (Core and Framework)

 
AnswerRe: Database for desktop application Pin
F-ES Sitecore13-Aug-20 1:40
professionalF-ES Sitecore13-Aug-20 1:40 
AnswerRe: Database for desktop application Pin
Mycroft Holmes13-Aug-20 13:35
professionalMycroft Holmes13-Aug-20 13:35 
AnswerRe: Database for desktop application Pin
Gerry Schmitz13-Aug-20 16:13
mveGerry Schmitz13-Aug-20 16:13 
AnswerRe: Database for desktop application Pin
Gilberto - Star Lima18-Sep-20 11:32
professionalGilberto - Star Lima18-Sep-20 11:32 
QuestionIs .NET Remoting deprecated/obsolete? Pin
honey the codewitch4-Aug-20 17:19
mvahoney the codewitch4-Aug-20 17:19 
AnswerRe: Is .NET Remoting deprecated/obsolete? Pin
Richard Deeming4-Aug-20 23:30
mveRichard Deeming4-Aug-20 23:30 
AnswerRe: Is .NET Remoting deprecated/obsolete? Pin
markrlondon2-Nov-20 17:44
markrlondon2-Nov-20 17:44 
QuestionAggregation count returns null in linq asp.net core Pin
ElenaRez27-Jul-20 7:59
ElenaRez27-Jul-20 7:59 
I'm implementing asp.net core 3.1 project. In my controller I have a linq query like the following and without defining inprocessapicount and pendingcount which claculates counts of related amounts, it works fine but after adding them to my query in select part, applicants returns null. I appreciate if anyone suggests me a solution.

var applicants = (from t1 in _context.VwDesk

{

apiID = t1.ApiId,
applicantID = t1.ApplicantId,
applicantName = t1.ApplicantName,

gateName =t1.GateName,

requestStatus = t1.LastReqStatus
}
group tg by new { tg.requestStatus,tg.apiID ,tg.applicantID, tg.applicantName} into ApiAppGp
select new
{
applicantName = ApiAppGp.Key.applicantName,

apiname = ApiAppGp.Key.apiID,

apicount =ApiAppGp.Count(),

inprocessapicount = ApiAppGp.Where(a => a.requestStatus == "bb").Count(),
pendingapicount = ApiAppGp.Where(a => a.requestStatus == "aa").Count()


}).ToList();
AnswerRe: Aggregation count returns null in linq asp.net core Pin
Gerry Schmitz28-Jul-20 6:44
mveGerry Schmitz28-Jul-20 6:44 
QuestionHow do I Add End User Self Registration to IdentityServer? Pin
Brian Prestwood20-Jul-20 19:50
Brian Prestwood20-Jul-20 19:50 
AnswerRe: How do I Add End User Self Registration to IdentityServer? Pin
Brian Prestwood8-Aug-20 7:17
Brian Prestwood8-Aug-20 7:17 
QuestionHow to join two linq queries to find some common data between them Pin
ElenaRez22-Jun-20 11:16
ElenaRez22-Jun-20 11:16 
AnswerRe: How to join two linq queries to find some common data between them Pin
Eddy Vluggen22-Aug-20 10:15
professionalEddy Vluggen22-Aug-20 10:15 
QuestionHow to retrieve user's data from active directory by novell.Directory.LDap.NetStandard library Pin
ElenaRez22-Jun-20 0:05
ElenaRez22-Jun-20 0:05 
AnswerRe: How to retrieve user's data from active directory by novell.Directory.LDap.NetStandard library Pin
Dave Kreskowiak22-Jun-20 3:45
mveDave Kreskowiak22-Jun-20 3:45 
QuestionGetting “Unable to connect to the remote server” When I call WebAPI Url (C#) Pin
sfd16-Jun-20 0:17
sfd16-Jun-20 0:17 
AnswerRe: Getting “Unable to connect to the remote server” When I call WebAPI Url (C#) Pin
Richard Deeming16-Jun-20 0:34
mveRichard Deeming16-Jun-20 0:34 
QuestionSecuring Net Core API Pin
pkfox12-Jun-20 4:04
professionalpkfox12-Jun-20 4:04 
AnswerRe: Securing Net Core API Pin
Pete O'Hanlon12-Jun-20 5:29
mvePete O'Hanlon12-Jun-20 5:29 
GeneralRe: Securing Net Core API Pin
pkfox12-Jun-20 8:15
professionalpkfox12-Jun-20 8:15 
QuestionSMTP authentication oddities Pin
DerekT-P7-Jun-20 11:21
professionalDerekT-P7-Jun-20 11:21 
AnswerRe: SMTP authentication oddities Pin
Richard Deeming8-Jun-20 0:00
mveRichard Deeming8-Jun-20 0:00 
GeneralRe: SMTP authentication oddities Pin
DerekT-P8-Jun-20 0:59
professionalDerekT-P8-Jun-20 0:59 
GeneralLooking for a (free) .NET pluralizer / singularizer Pin
Sander Rossel3-Jun-20 1:11
professionalSander Rossel3-Jun-20 1:11 
GeneralRe: Looking for a (free) .NET pluralizer / singularizer Pin
Garth J Lancaster3-Jun-20 1:17
professionalGarth J Lancaster3-Jun-20 1:17 

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.