C# Class Store.ForeignKeyConstraint

Inheritance: Constraint
Mostra file Open project: elevate/mysqlconnector-.net

Private Properties

Property Type Description
OnDeleteRuleChanged void
OnDeleteRuleChanging void
OnUpdateRuleChanged void
OnUpdateRuleChanging void

Public Methods

Method Description
CreateForeignKeyConstraint ( string id, string name, bool isDeferrable, bool isInitiallyDeferred, string updateRule, string deleteRule ) : ForeignKeyConstraint

Create a new ForeignKeyConstraint object.

Private Methods

Method Description
OnDeleteRuleChanged ( ) : void
OnDeleteRuleChanging ( string value ) : void
OnUpdateRuleChanged ( ) : void
OnUpdateRuleChanging ( string value ) : void

Method Details

CreateForeignKeyConstraint() public static method

Create a new ForeignKeyConstraint object.
public static CreateForeignKeyConstraint ( string id, string name, bool isDeferrable, bool isInitiallyDeferred, string updateRule, string deleteRule ) : ForeignKeyConstraint
id string Initial value of Id.
name string Initial value of Name.
isDeferrable bool Initial value of IsDeferrable.
isInitiallyDeferred bool Initial value of IsInitiallyDeferred.
updateRule string Initial value of UpdateRule.
deleteRule string Initial value of DeleteRule.
return ForeignKeyConstraint