Hi,
I am using C#/SQL server 2008/VS 2008 and version 2.6 (demo) with the 'adapter' template. Started with a simple create instance project, but found that the generated DataAccessAdapter is incomplete. Among other missing methods, the SaveEntity and FetchEntity were not generated.
var adapter = new DALSD.DataAccessAdapter(StApplicationContext.ConnectionString, true);
var namedListType = new DAL.EntityClasses.NamedListTypeEntity();
namedListType.Name = "list";
namedListType.MemberObjectTypeId = "EN";
adapter.SaveEntity ......... doesn't exists