CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
GrandChildList.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="GrandChildList.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>no summary</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Linq;
10
12{
14 public partial class GrandChildList : BusinessListBase<GrandChildList, GrandChild>
15 {
16 #region Data Access
17
18 public static int GrandChildId1 = 1;
19 public static int GrandChildId2 = 2;
20 public static int GrandChildId3 = 3;
21
22 private void Child_Fetch(Guid parentId)
23 {
24 RaiseListChangedEvents = false;
25
26 var grandChildren =
27 new[]
28 {
32 };
33
34 var found = from c in grandChildren
35 where parentId == Guid.Empty || c.ParentId == parentId
36 select c;
37
38 AddRange(found.ToArray());
39
40 RaiseListChangedEvents = true;
41 }
42
43 #endregion
44 }
45}
This is the base class from which most business collections or lists will be derived.
@ Serializable
Prevents updating or inserting until the transaction is complete.