我最近在使用Windows Azure模拟器时发现了一个错误。问题是这样的: 可以说我有这个模型类
//table name can be "contacts"
Public class PhoneBook
{
public string FirstName{get;set;}//which is my rowKey
public string LastName {get;set;}//partitionKey
public string Age {get;set;} //which is just another field
}
因此,当在“Age”参数中查询“contacts”表时,它不会返回null。 它只会抛出一些异常。我假设表没有初始化,毕竟不知道Age字段,但我希望“null”。
现在,我怎么能解决这类问题?