forked from dotnet/efcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphBehavior.cs
More file actions
22 lines (20 loc) · 819 Bytes
/
Copy pathGraphBehavior.cs
File metadata and controls
22 lines (20 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.Data.Entity
{
/// <summary>
/// Indicates how the navigation properties of an entity are traversed so that a given operation can be recursively
/// performed on the entities that it is related to.
/// </summary>
public enum GraphBehavior
{
/// <summary>
/// Navigation properties where the entity being acted on is the principal are traversed.
/// </summary>
IncludeDependents,
/// <summary>
/// Navigation properties are not traversed. The operation is only performed on the root entity.
/// </summary>
SingleObject
};
}