Pages
- Export tabe Excel in Asp.net
- CSS
- Date Picker in Jquery
- SQL
- Sort Self Code
- JavaScript(Print Page)
- Web Services Part-4(How to make changes to wcf ser...
- WCF Services Part-3( WCF service implementing mult...
- Home
- WCF Services Part-2(configuration web.config)
- WCF Services Part-1
- Web Services part-1 (introduction)
- Web Service PART-5 ( Call Web Service using JQuery...
- Web Service PART-4 ( Calling asp net web service f...
- Web Service PART-3 (WebMethod attribute properties...
- Web Service PART-2 (Session State )
Monday, 4 January 2021
3 level object in MongoDb Condition
SubscribePlan.aggregate([
{ $match: { "subscriberId": subscriberId } },
{ "$addFields": { "planId1": { "$toString": "$planId" } } },
{
"$lookup": {
"from": "Signal",
// "let": { "planId0": "$package_id", "mentorId": "$mentorId" },
"let": { "planId0": "$planId" },//privous collection
"pipeline": [
{ "$match": { "$expr": { "$eq": ["$package_id", "$$planId0"] } } },
{
"$lookup": {
"from": "mentors",
"let": { "mentorId0": { "$toObjectId": "$mentorId" } }, //privous collection
"pipeline": [
{ "$match": { "$expr": { "$eq": ["$_id", "$$mentorId0"] } } }
],
"as": "mentorDetail",
}
},
{ "$unwind": "$mentorDetail" }
],
"as": "signal",
}
},
{ "$unwind": "$signal" }
])
.then(mySignal => {
res.send({ myPlamSignals: mySignal });
}).catch(err => {
res.status(500).send({ Message: err.message, Result: false, data: err });
})
Subscribe to:
Post Comments (Atom)
IIS deployment support details
Node JS - IIS deployment support details node: http://go.microsoft.com/?linkid=9784334 IISNode: https://github.com/azure/iisnode/releases/...
Pages
- Home
- Export tabe Excel in Asp.net
- CSS
- Sort Self Code
- SQL
- JavaScript(Print Page)
- Date Picker in Jquery
- WCF Services Part-3( WCF service implementing mult...
- Web Services Part-4(How to make changes to wcf ser...
- WCF Services Part-2(configuration web.config)
- WCF Services Part-1
- Web Services part-1 (introduction)
- Web Service PART-5 ( Call Web Service using JQuery...
- Web Service PART-4 ( Calling asp net web service f...
- Web Service PART-3 (WebMethod attribute properties...
- Web Service PART-2 (Session State )
-
@ NgModule ({ declarations: [ GrdFilterPipe ] }) import { Pipe , PipeTransform } from '@angular/core' ; @ Pipe...
-
======Angular onFileChange(event: any) { var reader: any = new FileReader(); if (event.target.files && event.target.files.l...
-
public void MailSant( string Subject, string message_text, string to1) { //------------ Mail Code Start here .....
No comments:
Post a Comment