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
AParent.cs
Go to the documentation of this file.
1
//-----------------------------------------------------------------------
2
// <copyright file="AParent.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
//-----------------------------------------------------------------------
8
using
System;
9
using
System.Collections.Generic;
10
using
System.Text;
11
12
namespace
Csla.Test.LazyLoad
13
{
14
[
Serializable
]
15
public
class
AParent
:
Csla
.
BusinessBase
<AParent>
16
{
17
public
static
PropertyInfo<Guid>
IdProperty
= RegisterProperty<Guid>(c => c.Id);
18
public
Guid
Id
19
{
20
get
{
return
GetProperty(
IdProperty
); }
21
set
{ SetProperty(
IdProperty
, value); }
22
}
23
24
private
static
PropertyInfo<AChildList>
ChildListProperty =
25
RegisterProperty<AChildList>(c => c.ChildList,
"Child list"
,
null
,
RelationshipTypes
.LazyLoad);
26
public
AChildList
ChildList
27
{
28
get
29
{
30
return
LazyGetProperty(ChildListProperty, FetchChildList);
31
}
32
}
33
34
public
AChildList
GetChildList
()
35
{
36
if
(FieldManager.FieldExists(ChildListProperty))
37
return
ReadProperty<AChildList>(ChildListProperty);
38
else
39
return
null
;
40
}
41
42
public
new
int
EditLevel
43
{
44
get
{
return
base.EditLevel; }
45
}
46
47
[Create]
48
private
void
Create()
49
{
50
using
(BypassPropertyChecks)
51
Id
= Guid.NewGuid();
52
}
53
54
private
AChildList FetchChildList()
55
{
56
IDataPortal<AChildList>
dataPortal =
ApplicationContext
.
GetRequiredService
<
IDataPortal<AChildList>
>();
57
return
dataPortal.
Fetch
();
58
}
59
}
60
}
Csla.ApplicationContext
Provides consistent context information between the client and server DataPortal objects.
Definition:
ApplicationContext.cs:22
Csla.ApplicationContext.GetRequiredService
object GetRequiredService(Type serviceType)
Attempts to get service via DI using ServiceProviderServiceExtensions.GetRequiredService.
Definition:
ApplicationContext.cs:403
Csla.BusinessBase
This is the base class from which most business objects will be derived.
Definition:
BusinessBase.cs:38
Csla.PropertyInfo
Maintains metadata about a property.
Definition:
Csla/PropertyInfo.cs:22
Csla.Test.LazyLoad.AChildList
Definition:
AChildList.cs:16
Csla.Test.LazyLoad.AParent
Definition:
AParent.cs:16
Csla.Test.LazyLoad.AParent.Id
Guid Id
Definition:
AParent.cs:19
Csla.Test.LazyLoad.AParent.GetChildList
AChildList GetChildList()
Definition:
AParent.cs:34
Csla.Test.LazyLoad.AParent.ChildList
AChildList ChildList
Definition:
AParent.cs:27
Csla.Test.LazyLoad.AParent.IdProperty
static PropertyInfo< Guid > IdProperty
Definition:
AParent.cs:17
Csla.Test.LazyLoad.AParent.EditLevel
new int EditLevel
Definition:
AParent.cs:43
Csla.IDataPortal
Interface defining the members of the data portal type.
Definition:
IDataPortalT.cs:17
Csla.IDataPortal.Fetch
object Fetch(params object[] criteria)
Called by a factory method in a business class to retrieve an object, which is loaded with values fro...
Csla.Test.LazyLoad
Definition:
AChild.cs:13
Csla
Definition:
BusinessRuleCases.cs:5
Csla.RelationshipTypes
RelationshipTypes
List of valid relationship types between a parent object and another object through a managed propert...
Definition:
RelationshipTypes.cs:19
Csla.TransactionIsolationLevel.Serializable
@ Serializable
Prevents updating or inserting until the transaction is complete.
Generated by
1.9.2