Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SaveOptions.cs « Objects « Data « System « System.Data.Entity « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b79e86b6c25713e2c526ef765d189c2a44a8e9e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//------------------------------------------------------------------------------
// <copyright file="SaveOptions.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//
// @owner       [....]
// @backupOwner [....]
//------------------------------------------------------------------------------

namespace System.Data.Objects
{
    /// <summary>
    /// Flags used to modify behavior of ObjectContext.SaveChanges()
    /// </summary>
    [Flags]
    public enum SaveOptions
    {
        None = 0,
        AcceptAllChangesAfterSave = 1,
        DetectChangesBeforeSave = 2
    }
}