Click here to Skip to main content
15,899,679 members

Comments by Cyrus_Vivek (Top 26 by date)

Cyrus_Vivek 26-Jun-18 16:41pm View    
https://msdn.microsoft.com/en-us/library/xsa4321w(v=vs.110).aspx
Cyrus_Vivek 26-Feb-18 15:47pm View    
Similar issue resolved below
https://github.com/sass/node-sass/issues/2100
Cyrus_Vivek 23-Mar-16 14:54pm View    
I feel, the expression itself is working fine., but the data before getting into this point, is not appropriate. However, thanks v7777 for making few corrections in the expression, which actually did help me.
-Cyrus
Cyrus_Vivek 22-Mar-16 16:21pm View    
The expression which I have is working fine., except that the filter was giving all the records. Meaning filter was not working!
Cyrus_Vivek 22-Mar-16 16:02pm View    
So, I tried. here is the thing.
if (!string.IsNullOrWhiteSpace(utility))
{
submissions = submissions
.Where(s => s.SummaryBillMaster.BillingGroupFacilityCollection
.Where(p => p.Pipeline.PipelineName == utility && p.Period == s.Period))
.Select(f => f.Facility.DealCollection)
.Any());
}

this is not working because Facility is in BillingGroupFacilityCollection.
and DealCollection is in Facility.
DealCollection is a ICollection.

Any ideas?