CSLA.NET
5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
RelationshipTypes.cs
Go to the documentation of this file.
1
//-----------------------------------------------------------------------
2
// <copyright file="RelationshipTypes.cs" company="Marimer LLC">
3
// Copyright (c) Marimer LLC. All rights reserved.
4
// Website: https://cslanet.com
5
// </copyright>
6
// <summary>List of valid relationship types</summary>
7
//-----------------------------------------------------------------------
8
using
System;
9
10
namespace
Csla
11
{
17
[Flags]
18
public
enum
RelationshipTypes
19
{
23
None = 0x0,
28
[Obsolete]
29
Child
=0x1,
37
LazyLoad
=0x2,
45
PrivateField
=0x4,
46
}
47
}
Csla
Definition:
Csla.AspNetCore.Shared/ApplicationContextManager.cs:16
Csla.RelationshipTypes
RelationshipTypes
List of valid relationship types between a parent object and another object through a managed propert...
Definition:
RelationshipTypes.cs:19
Csla.RelationshipTypes.LazyLoad
@ LazyLoad
Property is a reference to a lazy loaded object.
Csla.RelationshipTypes.Child
@ Child
Property is a reference to a child object contained by the parent.
Csla.RelationshipTypes.PrivateField
@ PrivateField
Property is stored in a private field.
Generated by
1.9.2