gpt4 book ai didi

c# - 使用动态 LINQ(或泛型)查询/筛选 Azure 表

转载 作者:行者123 更新时间:2023-12-03 01:58:30 26 4
gpt4 key购买 nike

这就是我的困境。我正在尝试利用动态 LINQ 来解析搜索过滤器,以从 Azure 表中检索一组记录。目前,我可以使用定义如下的 GenericEntity 对象来获取所有记录:

public class GenericEntity
{
public string PartitionKey { get; set; }
public string RowKey { get; set; }

Dictionary<string, object> properties = new Dictionary<string, object>();
/* "Property" property and indexer property omitted here */
}

我可以通过利用 TableServiceContext 对象的 ReadingEntity 事件(称为 OnReadingGenericEvent)来完全填充它。以下代码实际上是提取所有记录并希望过滤器(一旦我让它工作)。

public IEnumerable<T> GetTableRecords(string tableName, int numRecords, string filter)
{
ServiceContext.IgnoreMissingProperties = true;

ServiceContext.ReadingEntity -= LogType.GenericEntity.OnReadingGenericEntity;
ServiceContext.ReadingEntity += LogType.GenericEntity.OnReadingGenericEntity;

var result = ServiceContext.CreateQuery<GenericEntity>(tableName).Select(c => c);
if (!string.IsNullOrEmpty(filter))
{
result = result.Where(filter);
}
var query = result.Take(numRecords).AsTableServiceQuery<GenericEntity>();
IEnumerable<GenericEntity> res = query.Execute().ToList();

return res;
}

我为我定义的所有表都有 TableServiceEntity 派生类型,因此我可以使用反射获取所有属性/类型。在动态 LINQ 查询中使用 GenericEntity 类进行过滤的问题是 GenericEntity 对象没有我尝试过滤的任何属性,因为它们实际上只是字典条目(动态查询错误)。我可以解析出该特定类型的所有属性名称的过滤器并换行

"Property[" + propName + "]" 

围绕每个属性(通过使用类型解析器函数和反射找到)。然而,这似乎有点……矫枉过正。我试图找到一个更优雅的解决方案,但由于我实际上必须在 ServiceContext.CreateQuery<> 中提供一个类型,这使得它变得有些困难。

所以我想我的最终问题是:如何将动态类或泛型类型与此构造一起使用,以便能够利用动态查询进行过滤?这样我就可以从文本框中获取过滤器(例如“item_ID > 1023000”)并动态生成 TableServiceEntity 类型。

我还可以利用其他方法来解决这个问题,但我想既然我开始使用动态 LINQ,不妨也尝试一下动态类。

编辑:所以我已经通过初始选择使用一些反射生成了动态类,但是在将 GenericEntity.Properties 的类型映射到各种关联表中时遇到了障碍记录类(TableServiceEntity 派生类)及其属性类型。主要问题仍然是我最初必须使用特定的数据类型来创建查询,因此我使用仅包含 KV 对的 GenericEntity 类型。这最终会阻止我进行过滤,因为我无法对对象类型进行比较运算符(>、<、= 等)。

这是我现在用于映射到动态类的代码:

var properties = newType./* omitted */.GetProperties(
System.Reflection.BindingFlags.Instance |
System.Reflection.BindingFlags.Public);

string newSelect = "new(" + properties.Aggregate("", (seed, reflected) => seed += string.Format(", Properties[\"{0}\"] as {0}", reflected.Name)).Substring(2) + ")";
var result = ServiceContext.CreateQuery<GenericEntity>(tableName).Select(newSelect);

也许我应该修改properties.Aggregate方法,在“Properties[...]”部分添加reflected.PropertyType前缀?因此新的选择字符串将如下所示:

string newSelect = "new(" + properties.Aggregate("", (seed, reflected) => seed += string.Format(", ({1})Properties[\"{0}\"] as {0}", reflected.Name, reflected.PropertyType)).Substring(2) + ")";

编辑2:所以现在我遇到了很大的障碍。我可以为所有表生成匿名类型来提取我需要的所有值,但是无论我对过滤器做什么,LINQ 都会对我产生影响。我已经在上面说明了原因(对象上没有比较运算符),但我现在一直在努力解决的问题是尝试为动态 LINQ 扩展方法指定一个类型参数以接受新对象类型的架构。那里也不太走运...我会及时通知大家。

最佳答案

我创建了一个简单的基于 System.Refection.Emit 的解决方案来创建您在运行时所需的类。 http://blog.kloud.com.au/2012/09/30/a-better-dynamic-tableserviceentity/

关于c# - 使用动态 LINQ(或泛型)查询/筛选 Azure 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3731445/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com