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.
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,
31 LazyLoad=0x2,
39 PrivateField=0x4,
40 }
41}
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.
@ PrivateField
Property is stored in a private field.