Hi, After a gap, again I entered to Visual C++ 2010. Now my intention is to prepare a LINQ Query to select a distinct value from a datatable
In C# My Query
The above query I try to convert it into VIsual C++
But not succeeded.... I found the error like "from" undeclared Identifier
Thanks for the ideas... .
In C# My Query
Code:
var ProjLnkQry = (from P in MyClass1.ProjTbl.AsEnumerable() select P["proj_name"]).Distinct().ToList();
Code:
auto DistDepQry=(from v1 in MyGlobalData::ProjectTbl::AsEnumaerable() select v1["depart_name"])->Distinct()->ToList();
Thanks for the ideas... .