аргумента.
using Microsoft.WindowsAzure.Storage.Auth;
using Microsoft.WindowsAzure.Storage.Table.DataServices;
using System;
using System.Linq;
namespace WorkerRole1
{
class StudentContext : TableServiceContext
{
public IQueryable<Student> ContactData
{
get
{
return this.CreateQuery<Student>("Students");
}
}
public StudentContext(Uri baseStudent, StorageCredentials credentials) :
base(baseStudent.AbsoluteUri, credentials)
{ }
}
}
Обсуждают сегодня