I am a noob to .NET and windows azure and trying to follow this tutorial: http://msdn.microsoft.com/en-us/wazplatformtrainingcourse_introtowindowsazurelabvs2010_topic2.aspx
when i try to declare an IQueryable property as follows:
public IQueryable<C1_Schema> C1_Schema
{
get
{
return this.CreateQuery<C1_Schema>("C1_Schema");
}
}
I Get an error : Error expected class,delegate,enum,interface,struct
This is the class where i declare the property
public IQueryable<C1_Schema> C1_Schema
{
get
{
return this.CreateQuery<C1_Schema>("C1_Schema");
}
}
public class context : Microsoft.WindowsAzure.StorageClient.TableServiceContext
{
public context(string baseAddress, Microsoft.WindowsAzure.StorageCredentials credentials)
: base(baseAddress, credentials)
{ }
}
C1_Schema class :
public class C1_Schema : Microsoft.WindowsAzure.StorageClient.TableServiceEntity
{
public String fname { get; set; }
public String lname { get; set; }
public double salary { get; set;}
public C1_Schema()
{
PartitionKey = DateTime.UtcNow.ToString("MMddyyyy");
// Row key allows sorting, so we make sure the rows come back in time order.
RowKey = string.Format("{0:10}_{1}", DateTime.MaxValue.Ticks - DateTime.Now.Ticks, Guid.NewGuid());
}
}
I appreciate your help.
C1_Schema? – Paul Phillips Dec 30 '12 at 17:26