使用RowKey和分区键以外的其他字段查询时,Windows azure dev Emulator erro

时间:2012-08-02 12:13:45

标签: azure-storage azure-table-storage

我最近在使用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”。

现在,我怎么能解决这类问题?

0 个答案:

没有答案