在做以下简单示例时,我发现了以下困难正如标题所说,我打算在将数据存储在 Azure 表存储中时使用存储库模式。现在我有几个类,Repository.cs,IRepository.cs 、DataContext.cs 和Controller。
在阅读过程中,我发现了一些信息,并一直在做以下事情。IRepository.cs
public interface IRepository<T> where T: TableServiceEntity
{
T GetById(int Id);
IQueryable<T> GetAll();
}
和 DataContext.cs
public class DataContext<T>:TableServiceContext where T:TableServiceEntity
{
public DataContext(CloudStorageAccount storageaccount, StorageCredentials credentials)
: base(storageaccount.TableEndpoint.AbsoluteUri, credentials)
{
// _storageAccount = storageaccount;
var storageAccount = CloudStorageAccount.Parse(RoleEnvironment.GetConfigurationSettingValue(KEY_STORAGE));
storageAccount.CreateCloudTableClient().CreateTableIfNotExist(tableName);
}
public IQueryable<T> DeviceTable
{
get { return CreateQuery<T>(tableName); }
}
}
加上控制器的某些部分(我之前创建的表中已经有数据)
public class DeviceMeController : Controller
{
private IRepository<Entity>_repository;
public Controller() : this(new Repository<Entity>())
{
}
public Controller(IRepository<Entity> repository)
{
_repository = repository;
}
public ActionResult Index()
{
var List = _repository.GetAll();
return View(deviceList);
}
和接口 Reposistory.cs 的实现,这里是我有一个错误并在某个地方迷路的地方
public class Repository<T>:IRepository<T> where T:TableServiceEntity
{
private DataContext<T> _serviceContext;
// here get tablename as pararameter;
// so the Enities call this function
public Repository()
{
// the same context for multiple tables ?
}
// perhaps it should take the table Name
public void Add(T item)
{
_serviceContext.AddObject(TableName,item);
_serviceContext.SaveChangesWithRetries();
}
public IQueryable<T> GetAll()
{
var results = from c in _serviceContext.Table
select c;
return results;
错误是关于空引用,调试器显示变量结果为空?
最后,我需要知道一些事情。
我应该在 Repository.cs 构造函数中做什么?我相信 Datacontext.cs 类必须在一个单独的类中......
这里有任何提示