Skip to content
This repository was archived by the owner on Mar 17, 2024. It is now read-only.

[Construct build exceptions] used some json parsing of dynamic types in my code and it didn't work properly #1207

@AlphaCharry

Description

@AlphaCharry

Problem description

                dynamic[] configTable = JsonConvert.DeserializeObject<dynamic[]>(configTableJson);
                int count = configTable.Length;

                foreach (dynamic RowItem in configTable)
                {
                    bool isExist = ConfigHelper.checkBhinDataTable(RowItem.bh.Value);  .// erro <----happend
                    string ExecSQL = "";
                    if (isExist)
                    {
                        ExecSQL = ConfigHelper.getUpdateSQLBuilder(RowItem);
                    }
                    else
                    {
                        ExecSQL = ConfigHelper.getInsertSQLBuilder(RowItem);
                    }
              }

Hello man, I added a code like this in the client and he doesn't work properly, catch to error is checkBhinDataTable is not defined!
But I run this statement alone and he works fine

bool isExist = ConfigHelper.checkBhinDataTable(RowItem.bh.Value);
rerutn isExist 

Proposal

Is there a problem with the compilation?

Additional context

No response

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions