我在 DesignDataService 类中有以下方法
public async Task<T> GetData<T>(T dataObject)
{
var typeName = typeof(T).Name;
switch (typeName)
{
case "PersonalInfo":
var person = new PersonalInfo
{
FirstName = "Mickey",
LastName = "Mouse" ,
Adres = new Address{Country="DLRP"} ,
};
return await person;
} // end Switch
} // GetData<T>
如何从 DataService 返回一个新的 PersonalInfo 类?
现在我收到错误无法等待'Model.PersonalInfo'
即使我将 return 语句更改如下,return await person as Task; 错误保持不变