Entity Framework stored procedure has the following properties.
Aggregate
Determines whether the stored procedure is aggregate. Acceptable values are: True or False.
Built In
Determines whether the stored procedure is built in. Acceptable values are: True or False.
Command Text
The Command Text of the stored procedure that contains database specific SQL.
Composable
Gets or sets whether a method is mapped to the function or to the stored procedure. Acceptable values are: True or False.
Concealed Function
If the value is set to True, Entity Framework will treat this function as a stored procedure that does not return a value. Acceptable values are: True or False.
Documentation
Long Description
Detailed description for the stored procedure.
Summary
Brief description for the stored procedure.
Name
The name of the stored procedure.
Niladic
Defines whether the stored procedure is called without parentheses and does not accept parameters. Acceptable values are: True or False.
Parameter Type Semantics
Defines the type semantics that is used to resolve the function overloads. Acceptable values are:
AllowImplicitConversion
Implicit conversion between the given and the formal argument types will be performed, if necessary. Default value.
AllowImplicitPromotion
Type promotion between the given and the formal argument types will be performed, if necessary.
ExactMatchOnly
Argument types must be equivalent.
Result Set Parameter Name
Defines the name of the stored procedure OUT parameter, which returns the result set.
Return Type
Specifies the return type of the procedure (for stored functions). Acceptable values are: bigint, binary, bit, char, date, datetime, datetime2, datetimeoffset, decimal, float, geography, geometry, image, int, money, nchar, ntext, numeric, nvarchar, nvarchar(max), real, rowversion, smalldatetime, smallint, smallmoney, text, time, timestamp, tinyint, uniqueidentifier, varbinary, varbinary(max), varchar, varchar(max), xml.
Schema
Specifies the schema in the database, the stored procedure belongs to.
Stored Procedure Name
Specifies the database stored procedure name.