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
MockList.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="MockList.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 MockList : BusinessListBase<MockList, MockEditableChild>
15 {
16 public static Guid MockEditableChildId1 = new Guid("{4AF07634-1D10-4d09-BBCB-42396324C103}");
17 public static Guid MockEditableChildId2 = new Guid("{402DB94B-0D93-4be2-AFD0-7D1587CDDBC2}");
18 public static Guid MockEditableChildId3 = new Guid("{B2ADE99D-7AB4-4e70-AEA1-D70443BCC3B0}");
19
20 private void Fetch(string nameFilter)
21 {
22 RaiseListChangedEvents = false;
23 var children =
24 new[]
25 {
29 };
30
31 var found = from c in children
32 where string.IsNullOrEmpty(nameFilter) || c.Name == nameFilter
33 select c;
34
35 AddRange(found.ToArray());
36
37 RaiseListChangedEvents = true;
38 }
39 }
40}
This is the base class from which most business collections or lists will be derived.
static MockEditableChild Load(Guid Id, string name)
@ Serializable
Prevents updating or inserting until the transaction is complete.