GraphEngine icon indicating copy to clipboard operation
GraphEngine copied to clipboard

should not throw exception when calling SelectFields<T> with non-existing attributes.

Open yatli opened this issue 8 years ago • 0 comments

repro:

cell MyCell {
[Attr1]
List<string> field;
}

var cell = Global.LocalStorage.NewGenericCell("MyCell", 0);
foreach(var f in cell.SelectFields<int>("Attr2")) {}

expect: SelectFields enumerates nothing, but does not throw exception.

actual: SelectFields throw an exception indicating data type is not compatible with the cell.

yatli avatar Feb 25 '17 12:02 yatli