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
Csla.test/BasicModern/Child.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7using Csla;
9
11{
13 public class Child : BusinessBase<Child>
14 {
15 public static readonly PropertyInfo<int> IdProperty = RegisterProperty<int>(nameof(Id));
16 public int Id
17 {
18 get { return GetProperty(IdProperty); }
19 set { SetProperty(IdProperty, value); }
20 }
21
22 public static readonly PropertyInfo<string> NameProperty = RegisterProperty<string>(nameof(Name));
23 [Required]
24 public string Name
25 {
26 get { return GetProperty(NameProperty); }
27 set { SetProperty(NameProperty, value); }
28 }
29
30 private void Child_Create(int id, string name)
31 {
32 using (BypassPropertyChecks)
33 {
34 Id = id;
35 Name = name;
36 }
37 }
38
39 private void Child_Fetch(int id, string name)
40 {
41 using (BypassPropertyChecks)
42 {
43 Id = id;
44 Name = name;
45 }
46 }
47
48 private void Child_Insert()
49 { }
50
51 private void Child_Update()
52 { }
53
54 private void Child_DeleteSelf()
55 { }
56 }
57}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
Maintains metadata about a property.
static readonly PropertyInfo< int > IdProperty
static readonly PropertyInfo< string > NameProperty
@ Serializable
Prevents updating or inserting until the transaction is complete.