last ...
This commit is contained in:
@@ -10,6 +10,10 @@ using xDataService.MongoRepositories;
|
||||
|
||||
namespace xAiApi.Data.Repositories.Mongo
|
||||
{
|
||||
/// <summary>
|
||||
/// a Repository Pattern Implementation for
|
||||
/// manipulating AiConversations ...
|
||||
/// </summary>
|
||||
public class XAiConversationMongoRepository : XBaseMongoRepository<XAiConversation, Guid>, IXAiConversationRepository
|
||||
{
|
||||
//
|
||||
|
||||
@@ -10,6 +10,10 @@ using xDataService.MongoRepositories;
|
||||
|
||||
namespace xAiApi.Data.Repositories.Mongo
|
||||
{
|
||||
/// <summary>
|
||||
/// a Repository Pattern Implementation for
|
||||
/// manipulating AiMessage ...
|
||||
/// </summary>
|
||||
public class XAiMessageMongoRepository : XBaseMongoRepository<XAiMessage, Guid>, IXAiMessageRepository
|
||||
{
|
||||
//
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using MongoDB.Driver;
|
||||
using MongoDB.Driver.Linq;
|
||||
using xAiApi.AI.Interfaces.Entities;
|
||||
@@ -10,6 +11,10 @@ using xDataService.MongoRepositories;
|
||||
|
||||
namespace xAiApi.Data.Repositories.Mongo
|
||||
{
|
||||
/// <summary>
|
||||
/// a Repository Pattern Implementation for
|
||||
/// manipulating AiProjects ...
|
||||
/// </summary>
|
||||
public class XAiProjectMongoRepository : XBaseMongoRepository<XAiProject, Guid>, IXAiProjectRepository
|
||||
{
|
||||
//
|
||||
@@ -28,6 +33,7 @@ namespace xAiApi.Data.Repositories.Mongo
|
||||
|
||||
public override IMongoQueryable<XAiProject> GetFullDbSet()
|
||||
{
|
||||
//
|
||||
return collection
|
||||
.AsQueryable();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user