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
RootSingleItemsList.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="RootSingleItemsList.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.Collections.Generic;
10using System.Linq;
11using System.Text;
12using Csla;
13using Csla.Security;
14using Csla.Core;
16
17
19{
22 {
23 private RootSingleItemsList() { }
24
25 [Serializable()]
26 public class FetchCriteria : CriteriaBase<FetchCriteria>
27 {
28 public FetchCriteria() { }
29
30 public FetchCriteria(int startId, int endId)
31 {
32 StartID = startId;
33 EndID = endId;
34 }
35
36 public static PropertyInfo<int> StartIDProperty = RegisterProperty<int>(c => c.StartID);
37 public int StartID
38 {
39 get { return ReadProperty(StartIDProperty); }
40 private set { LoadProperty(StartIDProperty, value); }
41 }
42
43 public static PropertyInfo<int> EndIDProperty = RegisterProperty<int>(c => c.EndID);
44 public int EndID
45 {
46 get { return ReadProperty(EndIDProperty); }
47 private set { LoadProperty(EndIDProperty, value); }
48 }
49 }
50
51 protected void DataPortal_Fetch(FetchCriteria criteria )
52 {
53 RaiseListChangedEvents = false;
54 for (int i = criteria.StartID; i <= criteria.EndID; i++)
55 {
56 DateTime aDate = new DateTime(2000,1, (i%30)+1);
57 this.Add(SingleItem.GetSingleItem(i, "Item # " + i.ToString(),aDate));
58 }
59 RaiseListChangedEvents = true;
60 }
61 }
62}
Base type from which Criteria classes can be derived in a business class.
Definition: CriteriaBase.cs:25
This is the base class from which collections of editable root business objects should be derived.
Maintains metadata about a property.
@ Serializable
Prevents updating or inserting until the transaction is complete.