TableServiceContext 和强类型表名称

发布于 2024-11-14 01:53:03 字数 363 浏览 4 评论 0原文

我有一个从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你与清晨阳光 2024-11-21 01:53:03

不。归根结底,CreateQuery() 必须具有要查询的表名。当然,您可以使用约定或反射来派生另一个方法中的表名称,但在某些时候必须将字符串传递给 CreateQuery。

public DataServiceQuery<T> CreateQueryByConvention<T>()
{
     return this.CreateQuery<T>(typeof(T).ToString());
}

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.

public DataServiceQuery<T> CreateQueryByConvention<T>()
{
     return this.CreateQuery<T>(typeof(T).ToString());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文