Used to quickly fetch a single name record from the db
Namespace: GZTW.AyaNova.BLLAssembly: GZTW.AyaNova.BLL (in GZTW.AyaNova.BLL.dll) Version: 7.0.0.0 (7.0.0.0)
Syntax
| C# |
|---|
[SerializableAttribute] public class NameFetcher : ReadOnlyBase |
| Visual Basic |
|---|
<SerializableAttribute> _ Public Class NameFetcher _ Inherits ReadOnlyBase |
| Visual C++ |
|---|
[SerializableAttribute] public ref class NameFetcher : public ReadOnlyBase |
Examples
This example fetches a client name from the database
CopyC#
//Note the table and column names automatically get the letter A prepended to them if not specified string sClientName = NameFetcher.GetItem("CLIENT", "NAME", MyClientID).RecordName;