This commit is contained in:
2025-11-28 16:54:56 +09:00
parent 23176551b7
commit 8f18415f25
841 changed files with 67879 additions and 12265 deletions

View File

@@ -12,6 +12,8 @@ using MONGO_DB_LIST = System.String;
namespace ServerCore;
// HANDOVER: MongoDB Wrapper 클래스 이고, MongoDB 연결을 위한 함수를 제공 한다.
public abstract class MongoDbConnectorBase : IDisposable
{
private IMongoClient? m_mongo_client;

View File

@@ -4,6 +4,8 @@
namespace ServerBase;
// HANDOVER: MongoDB IMongoCollection SDK Wrapper 클래스 이다.
public class MongoDbRepository<TCollection>
where TCollection : class
{