This commit is contained in:
Anderson Silva 2024-10-08 12:12:57 -05:00 коммит произвёл GitHub
Родитель 062a89718b
Коммит 74ea07308f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -43,11 +43,11 @@ namespace Microsoft.PowerFx.Types
protected override bool TryGetField(FormulaType fieldType, string fieldName, out FormulaValue result)
{
if (Type.TryGetFieldType(fieldName, out var logical, out var compileTimeType))
if (Type.TryGetFieldType(fieldName, out var compileTimeType))
{
// Only return field which were specified via the expectedType (IE RecordType),
// because inner record value may have more fields than the expected type.
if (compileTimeType == fieldType && _fields.TryGetValue(logical, out result))
if (compileTimeType == fieldType && _fields.TryGetValue(fieldName, out result))
{
return true;
}