//--------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner jeffreed // @backupOwner anpete //--------------------------------------------------------------------- using System; namespace System.Data.EntityModel.SchemaObjectModel { /// /// Valid actions in an On<Operation> element /// enum Action { /// /// no action /// None, /// /// Cascade to other ends /// Cascade, } }