Hi,
I'm from ArcMap world and totally confused between MVVM annd WPF and RelayCommand so please help me out.
In my Dockpane1ViewModel.cs I tried
private void DoSearch ()
{
string strLayerName = "abc";
string queryString= "";
foreach (var item in lslSubjAcct.Items)
{
queryString+= item.ToString() + ", ";
}
SelectByAttributeAsync(strLayerName , queryString);
}
Error: lslSubjAcct does not exist in current context. How do I fix it?
Thank you!