Skip to main content

Definition

Assembly: Microsoft.OData.Mcp.Core.dll Namespace: Microsoft.OData.Mcp.Core.Models Inheritance: System.Object

Syntax

Microsoft.OData.Mcp.Core.Models.EdmAction

Summary

Represents an action in the Entity Data Model.

Remarks

Actions are operations that may have side effects and are used to modify data or perform operations that cannot be expressed through standard CRUD operations.

Constructors

.ctor

Initializes a new instance of the EdmAction class.

Syntax

public EdmAction()

.ctor

Initializes a new instance of the EdmAction class with the specified name and namespace.

Syntax

public EdmAction(string name, string namespaceName)

Parameters

NameTypeDescription
namestringThe action name.
namespaceNamestringThe namespace containing this action.

.ctor Inherited

Inherited from object

Syntax

public Object()

Properties

BindingParameterType

Gets or sets the type that this action is bound to.

Syntax

public string BindingParameterType { get; set; }

Property Value

Type: string? The type name that this action is bound to, if applicable.

FullName

Gets the fully qualified name of the action.

Syntax

public string FullName { get; }

Property Value

Type: string The namespace and name separated by a dot.

IsBound

Gets or sets a value indicating whether the action is bound.

Syntax

public bool IsBound { get; set; }

Property Value

Type: bool true if the action is bound to a type; otherwise, false.

Remarks

Bound actions are called on instances of a specific type.

Name

Gets or sets the name of the action.

Syntax

public string Name { get; set; }

Property Value

Type: string The action name.

Namespace

Gets or sets the namespace of the action.

Syntax

public string Namespace { get; set; }

Property Value

Type: string The namespace containing this action.

Parameters

Gets or sets the parameters of the action.

Syntax

public System.Collections.Generic.List<Microsoft.OData.Mcp.Core.Models.EdmParameter> Parameters { get; set; }

Property Value

Type: System.Collections.Generic.List<Microsoft.OData.Mcp.Core.Models.EdmParameter> A collection of parameters that the action accepts.

ReturnType

Gets or sets the return type of the action.

Syntax

public string ReturnType { get; set; }

Property Value

Type: string? The type returned by the action, if any.

Methods

Equals Inherited Virtual

Inherited from object

Syntax

public virtual bool Equals(object obj)

Parameters

NameTypeDescription
objobject?-

Returns

Type: bool

Equals Inherited

Inherited from object

Syntax

public static bool Equals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

GetHashCode Inherited Virtual

Inherited from object

Syntax

public virtual int GetHashCode()

Returns

Type: int

GetType Inherited

Inherited from object

Syntax

public System.Type GetType()

Returns

Type: System.Type

MemberwiseClone Inherited

Inherited from object

Syntax

protected internal object MemberwiseClone()

Returns

Type: object

ReferenceEquals Inherited

Inherited from object

Syntax

public static bool ReferenceEquals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

ToString Inherited Virtual

Inherited from object

Syntax

public virtual string ToString()

Returns

Type: string?