Trim Values existing in Mongo Database(修剪值存在于Mongo数据库中)
问题描述
我的集合中的数据可能在前面和后面都有空格,我想要做的是修剪所有空格并进行==比较,以获得适当的记录我的代码如下:
var test = await _dataStore.FindMostRecentAsync(x => x.Barcodes.PrimaryBarcode.Trim() == barcode.Trim());
当我运行这段代码时,它给我一个错误.Trim()
不受支持(它仅在我修剪我传入的条形码字符串变量时起作用。
剪裁集合中数据的最佳方式是什么,以便我可以进行精确比较。
堆栈跟踪
在 MongoDB.Driver.Linq.Translators.PredicateTranslator.GetFieldExpression(Expression 表达式)位于 MongoDB.Driver.Linq.Translators.PredicateTranslator.TranslateComparison(Expression 变量表达式、表达式类型运算符类型、常量表达式 常量表达式)位于 MongoDB.Driver.Linq.Translators.PredicateTranslator.Translate(Expression 节点)位于 MongoDB.Driver.Linq.Translators.PredicateTranslator.Translate(Expression 节点,IBsonSerializerRegistry序列化程序注册表)位于 MongoDB.Driver.MongoCollectionImpl
1.CreateFindOperation[TProjection](FilterDefinition
1 过滤器,FindOptions2 options) at MongoDB.Driver.MongoCollectionImpl
1.FindAsync[TProjection](IClientSessionHandle 会话、筛选器定义1 filter, FindOptions
2个选项、 取消令牌取消令牌)在 MongoDB.Driver.MongoCollectionImpl1.<>c__DisplayClass37_0
1.b__0(IClientSessionHandle 会议)在 MongoDB.Driver.MongoCollectionImpl1.UsingImplicitSessionAsync[TResult](Func
2 函数异步、取消令牌取消令牌)
推荐答案
您必须使用聚合函数才能调用trim operator。
遗憾的是,没有通过C#驱动程序进行调用的直接方法,但是您可以使用一些BsonDocuments构建一种方法,如下所示:
var barcode = " 1512356 ";
//This exclude the trimmedField from the result.
var projectionDefinition = Builders<BsonDocument>.Projection.Exclude("trimmedField");
//Call the trim operator and put it in the temporary trimmedField property (this trims the barcode on the database)
var expression = new BsonDocument(new List<BsonElement>
{
new BsonElement("trimmedField", new BsonDocument(new BsonDocument("$trim", new BsonDocument("input", "$Barcodes.PrimaryBarcode"))))
});
//Add the trimmedField to the document
var addFieldsStage = new BsonDocument(new BsonElement("$addFields", expression));
//Build a filter on the trimmedField and trim the local variable
var trimFilter = Builders<BsonDocument>.Filter.Eq(x => x["trimmedField"], barcode.Trim());
//Put it all together
var result = collection.Aggregate().AppendStage<BsonDocument>(addFieldsStage).Match(trimFilter).Project(projectionDefinition).As<YourType>().ToList();
请确保在.As<T>
中输入正确的类型,以便能够强制转换实体。
如果在您的类上方添加[BsonIgnoreExtraElements]
,您将能够删除投影阶段。
这篇关于修剪值存在于Mongo数据库中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:修剪值存在于Mongo数据库中


- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 使用 rss + c# 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01