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//-----------------------------------------------------------------------
8using System;
9
10namespace Csla
11{
17 [Flags]
19 {
23 None = 0x0,
28 [Obsolete]
29 Child=0x1,
37 LazyLoad=0x2,
45 PrivateField=0x4,
46 }
47}
RelationshipTypes
List of valid relationship types between a parent object and another object through a managed propert...
@ LazyLoad
Property is a reference to a lazy loaded object.
@ Child
Property is a reference to a child object contained by the parent.
@ PrivateField
Property is stored in a private field.