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
//-----------------------------------------------------------------------
8
using
System;
9
10
namespace
Csla
11
{
17
[Flags]
18
public
enum
RelationshipTypes
19
{
23
None = 0x0,
31
LazyLoad
=0x2,
39
PrivateField
=0x4,
40
}
41
}
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.RelationshipTypes.LazyLoad
@ LazyLoad
Property is a reference to a lazy loaded object.
Csla.RelationshipTypes.PrivateField
@ PrivateField
Property is stored in a private field.
Generated by
1.9.2