Innovenergy_trunk/csharp/App/Backend/Database/User2Installation.cs

15 lines
301 B
C#
Raw Normal View History

2023-02-24 11:58:47 +00:00
using Innovenergy.Backend.Model.Relations;
2023-02-16 12:57:06 +00:00
using SQLite;
2023-02-24 11:58:47 +00:00
namespace Innovenergy.Backend.Database;
2023-02-16 12:57:06 +00:00
public partial class Db
{
private TableQuery<User2Installation> User2Installation => _Db.Table<User2Installation>();
public Int32 NbUser2Installation => User2Installation.Count();
}