Update MongoDb

This commit is contained in:
sunkaixuan
2025-05-04 10:06:16 +08:00
parent 2c62688810
commit 279f308691
23 changed files with 3530 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace SqlSugar.MongoDb
{
public static class Extensions
{
public static bool EqualCase(this string thisValue, string equalValue)
{
if (thisValue != null && equalValue != null)
{
return thisValue.ToLower() == equalValue.ToLower();
}
else
{
return thisValue == equalValue;
}
}
}
}