TableServiceContext 和强类型表名称
我有一个从 TableServiceContext 派生的 DocumentDataServiceContext。在该类中,我有以下方法:
public DataServiceQuery<Document> Documents
{
get
{
return this.CreateQuery<Document>("Documents");
}
}
有没有办法摆脱传递给 CreateQuery 的字符串常量,而是获取 CloudTableClient.CreateTablesFromModel(typeof(DocumentDataServiceContext)) 使用的表名?
I have a DocumentDataServiceContext derived from TableServiceContext. Inside that class I have the following method:
public DataServiceQuery<Document> Documents
{
get
{
return this.CreateQuery<Document>("Documents");
}
}
Is there a way to get rid of the string constant passed to CreateQuery and instead obtain the table name used by CloudTableClient.CreateTablesFromModel(typeof(DocumentDataServiceContext))?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。归根结底,CreateQuery() 必须具有要查询的表名。当然,您可以使用约定或反射来派生另一个方法中的表名称,但在某些时候必须将字符串传递给 CreateQuery。
No. At the end of the day, the CreateQuery() must have the table name to query against. You can of course use convention or reflection to derive what that table name will be in another method, but at some point a string must be passed to CreateQuery.