KREDOR Business Object Framework Documentation

StoredProceduresAttribute Class

Overwrites the defaults as to how the class is bound to the database.

For a list of all members of this type, see StoredProceduresAttribute Members.

System.Object
   Attribute
      StoredProceduresAttribute

public class StoredProceduresAttribute : Attribute

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Remarks

Takes precedence over the NamingConventionsAttribute.

Example

This sample demonstrates the use of SchemaAttribute to indicate that the class 'Client' is bound to the view or table Customers.

[StoredProcedures(Insert="spc_Customer_ins", Update="spc_Customer_upd")]
public class Client : DbCompany1
{
    ...        
}

Requirements

Namespace: Kredor.BO

Assembly: KREDOR.BOFramework (in KREDOR.BOFramework.dll)

See Also

StoredProceduresAttribute Members | Kredor.BO Namespace