Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I have a structure like this:
-Plan -Week -Day -Workout
And I want to query like this:
var plans = from s in db.Plans where s.ParentNodeId == 1234 select s.Children.Where(I want to be able to specify the "Workout" doctype here");
Can I do this in LINQ 2 Umbraco?
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Linq 2 Umbraco - Query children by doctype
I have a structure like this:
-Plan
-Week
-Day
-Workout
And I want to query like this:
var plans = from s in db.Plans
where s.ParentNodeId == 1234
select s.Children.Where(I want to be able to specify the "Workout" doctype here");
Can I do this in LINQ 2 Umbraco?
is working on a reply...