如果不存在同名项,如何插入一项?

发布于 2024-12-15 19:20:03 字数 238 浏览 1 评论 0原文

我正在插入一批名称:

myCollection.InsertBatch(value.Split(',').Where(o=> !string.IsNullOrEmpty(o)).Select( o => new Client { Name = o.Trim() }));

如何仅插入名称不同的名称?

ps MongoInsertOptions 在这种情况下有用吗?

I'm inserting a batch of names:

myCollection.InsertBatch(value.Split(',').Where(o=> !string.IsNullOrEmpty(o)).Select( o => new Client { Name = o.Trim() }));

How to insert only the ones, that don't have the same Name?

p.s. Are MongoInsertOptions useful in this case?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

誰ツ都不明白 2024-12-22 19:20:03

在“名称”上创建唯一索引

for example, in shell: db.MyCollection.ensureIndex({"Name":1}, {unique = true})

添加InsertOptions

var options = new MongoInsertOptions (myCollection) { CheckElementNames = true, Flags = InsertFlags.ContinueOnError, SafeMode = SafeMode.True};

var res = myCollection.InsertBatch(value.Split(',').Where(o => !string.IsNullOrEmpty(o)).Select(o => new Client { Name = o.Trim() }), options);

Make unique index on "Name"

for example, in shell: db.MyCollection.ensureIndex({"Name":1}, {unique = true})

Add InsertOptions

var options = new MongoInsertOptions (myCollection) { CheckElementNames = true, Flags = InsertFlags.ContinueOnError, SafeMode = SafeMode.True};

var res = myCollection.InsertBatch(value.Split(',').Where(o => !string.IsNullOrEmpty(o)).Select(o => new Client { Name = o.Trim() }), options);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文