2023-03-08 12:20:33 +00:00
|
|
|
using InnovEnergy.App.Backend.Model.Relations;
|
2023-02-16 12:57:06 +00:00
|
|
|
using SQLite;
|
|
|
|
|
2023-03-08 12:20:33 +00:00
|
|
|
namespace InnovEnergy.App.Backend.Database;
|
2023-02-16 12:57:06 +00:00
|
|
|
|
|
|
|
public partial class Db
|
|
|
|
{
|
|
|
|
private TableQuery<User2Folder> User2Folder => _Db.Table<User2Folder>();
|
|
|
|
public Int32 NbUser2Folder => User2Folder.Count();
|
|
|
|
|
|
|
|
}
|
|
|
|
|