Show / Hide Table of Contents

    IModelGetter.GetItem Method

    .NET Standard 2.x

    Gets the value of the specified column (by column number/name). You can specify whether to get the original value. By default, the current value is taken.

    Namespace: DWNet.Data

    Assembly: DWNet.Data.dll

    Overloads

    Method Description
    GetItem(short column, bool isOriginalValue = false) Gets the value of the specified column (by column number). You can specify whether to get the original value. By default, the current value is taken.
    GetItem(string column, bool isOriginalValue = false) Gets the value of the specified column (by column name). You can specify whether to get the original value. By default, the current value is taken.
    GetItem<TValue>(short column, bool isOriginalValue = false) Gets the value of the specified column (by column number) and converts this value to the specified data type. You can specify whether to get the original value. By default, the current value is taken.
    GetItem<TValue>(string column, bool isOriginalValue = false) Gets the value of the specified column (by column name) and converts this value to the specified data type. You can specify whether to get the original value. By default, the current value is taken.
    Back to top Generated by Appeon