It works, But I still do not understand.
Last time when I use like you, and I want to for each item:
var dtMenu = CustomTableItemProvider.GetItems(tableName).Where("MenuType='menu'");
foreach (var item in dtMenu)
{
var b = item["MenuName"];
}
The table has a data but It could not get in to the foreach loop.
Another project I still use like this, and I could get in the loop
But now I couldn't
Could you explain it for me?
Thanks you.