Hello..
First I open D VS as admin then create new project named with new model , in select reference packages I select all packages
, then create RunnableClass named rename
class RunnableClass1
{
///
/// Runs the class with the specified arguments.
///
/// The specified arguments.
public static void main(Args _args)
{
VendTable VendTable;
select firstonly VendTable where VendTable.AccountNum == "1001";
VendTable.AccountNum = "11001";
VendTable.renamePrimaryKey();
}
}
when pressed start button , it gave me an error
Error No assembly matching referenced module 'PublicSectorFormAdaptor' is found. 0
Any help ?