12 lines
319 B
C#
12 lines
319 B
C#
using InnovEnergy.App.Backend.Model.Relations;
|
|
using SQLite;
|
|
|
|
namespace InnovEnergy.App.Backend.Database;
|
|
|
|
public static partial class Db
|
|
{
|
|
private static TableQuery<User2Installation> User2Installation => _Db.Table<User2Installation>();
|
|
public static Int32 NbUser2Installation => User2Installation.Count();
|
|
}
|
|
|