reformat/reorder SQLiteProcedures file.
This commit is contained in:
parent
66def93ff1
commit
e41f15eec8
@ -2,32 +2,50 @@ namespace SQLiteRepository
|
|||||||
{
|
{
|
||||||
internal static class SQLiteProcedures
|
internal static class SQLiteProcedures
|
||||||
{
|
{
|
||||||
public const string GET_LOGS_IN_LAST_X_MINUTES= "select * from TimeLogDb where "+nameof(TimeLogDb.SwipeEventDateTime)+" > ? AND "+nameof(TimeLogDb.UserId_FK)+"=?";
|
public const string GET_LOGS_IN_LAST_X_MINUTES =
|
||||||
public const string GET_TIMELOGS = "select * from "+nameof(TimeLogDb)+ " where (" + nameof(TimeLogDb.UserId_FK) + "=? AND " + nameof(TimeLogDb.CalendarWeek) + "=? and " + nameof(TimeLogDb.Year) + "=?)";
|
"select * from TimeLogDb where " + nameof(TimeLogDb.SwipeEventDateTime) + " > ? AND " +
|
||||||
public const string GET_USER_BY_ID = "select * from " + nameof(UserIdentity) + " where " + nameof(UserIdentity.Id) + "=?";
|
nameof(TimeLogDb.UserId_FK) + "=?";
|
||||||
|
|
||||||
public const string GET_CARDS_BY_USER_ID = "select * from " + nameof(CardUniqueId) + " where " + nameof(CardUniqueId.UserId_FK) + "=?";
|
public const string GET_TIMELOGS =
|
||||||
public const string GET_CARDS_BY_UNIQUE_ID = "select * from " + nameof(CardUniqueId) + " where " + nameof(CardUniqueId.CardUId) + "=?";
|
"select * from " + nameof(TimeLogDb) + " where (" + nameof(TimeLogDb.UserId_FK) + "=? AND " +
|
||||||
public const string GET_UNASSIGNED_CARD_LIST = "select * from " + nameof(CardUniqueId) + " where " + nameof(CardUniqueId.UserId_FK) + "=?";
|
nameof(TimeLogDb.CalendarWeek) + "=? and " + nameof(TimeLogDb.Year) + "=?)";
|
||||||
|
|
||||||
public const string GET_USER_BY_FIRST_AND_LAST =
|
|
||||||
"select * from " + nameof(UserIdentity) + " where " + nameof(UserIdentity.FirstName) + " = ? AND " + nameof(UserIdentity.LastName) + " = ?";
|
|
||||||
public const string GET_ALL_USERS =
|
public const string GET_ALL_USERS =
|
||||||
"select * from " + nameof(UserIdentity) + " order by " + nameof(UserIdentity.LastName) + " collate nocase, " +
|
"select * from " + nameof(UserIdentity) + " order by " + nameof(UserIdentity.LastName) + " collate nocase, " +
|
||||||
nameof(UserIdentity.FirstName) + " collate nocase";
|
nameof(UserIdentity.FirstName) + " collate nocase";
|
||||||
|
|
||||||
public const string UPDATE_CARD_USER_ID = "update " + nameof(CardUniqueId) + " set " + nameof(CardUniqueId.UserId_FK) + "=? where " + nameof(CardUniqueId.Id) + "=?";
|
|
||||||
public const string GET_ALL_USERS_PAGINATE =
|
public const string GET_ALL_USERS_PAGINATE =
|
||||||
"select * from " + nameof(UserIdentity) + " order by " + nameof(UserIdentity.LastName) + " collate nocase, " +
|
"select * from " + nameof(UserIdentity) + " order by " + nameof(UserIdentity.LastName) + " collate nocase, " +
|
||||||
nameof(UserIdentity.FirstName) + " collate nocase limit ? offset ?";
|
nameof(UserIdentity.FirstName) + " collate nocase limit ? offset ?";
|
||||||
|
|
||||||
public const string SEARCH_USER_LIST = "SELECT * FROM " + nameof(UserIdentity) + " where(" + nameof(UserIdentity.FirstName) + " Like ? OR " + nameof(UserIdentity.LastName) + " Like ?)";
|
public const string GET_USER_BY_ID =
|
||||||
|
"select * from " + nameof(UserIdentity) + " where " + nameof(UserIdentity.Id) + "=?";
|
||||||
|
|
||||||
public const string GET_LAST_TIMELOG_DIRECTION = "SELECT * FROM " + nameof(TimeLogDb) + " where " + nameof(TimeLogDb.UserId_FK) + " = ? order by " + nameof(TimeLogDb.SwipeEventDateTime) + " desc LIMIT 1";
|
public const string GET_CARDS_BY_USER_ID =
|
||||||
|
"select * from " + nameof(CardUniqueId) + " where " + nameof(CardUniqueId.UserId_FK) + "=?";
|
||||||
|
|
||||||
|
public const string GET_CARDS_BY_UNIQUE_ID =
|
||||||
|
"select * from " + nameof(CardUniqueId) + " where " + nameof(CardUniqueId.CardUId) + "=?";
|
||||||
|
|
||||||
public const string GET_TOTAL_USER_COUNT = "select Max("+nameof(UserIdentity.Id)+") from " + nameof(UserIdentity);
|
public const string GET_UNASSIGNED_CARD_LIST =
|
||||||
|
"select * from " + nameof(CardUniqueId) + " where " + nameof(CardUniqueId.UserId_FK) + "=?";
|
||||||
|
|
||||||
public const string GET_USER_CONTRACTED_HOURS = "select "+nameof(UserIdentity.HoursPerWeek)+ " From UserIdentity where " + nameof(UserIdentity.Id) + "=?";
|
public const string UPDATE_CARD_USER_ID =
|
||||||
|
"update " + nameof(CardUniqueId) + " set " + nameof(CardUniqueId.UserId_FK) + "=? where " +
|
||||||
|
nameof(CardUniqueId.Id) + "=?";
|
||||||
|
|
||||||
|
public const string SEARCH_USER_LIST =
|
||||||
|
"SELECT * FROM " + nameof(UserIdentity) + " where(" + nameof(UserIdentity.FirstName) + " Like ? OR " +
|
||||||
|
nameof(UserIdentity.LastName) + " Like ?)";
|
||||||
|
|
||||||
|
public const string GET_LAST_TIMELOG_DIRECTION =
|
||||||
|
"SELECT * FROM " + nameof(TimeLogDb) + " where " + nameof(TimeLogDb.UserId_FK) + " = ? order by " +
|
||||||
|
nameof(TimeLogDb.SwipeEventDateTime) + " desc LIMIT 1";
|
||||||
|
|
||||||
|
public const string GET_TOTAL_USER_COUNT =
|
||||||
|
"select Max(" + nameof(UserIdentity.Id) + ") from " + nameof(UserIdentity);
|
||||||
|
|
||||||
|
public const string GET_USER_CONTRACTED_HOURS =
|
||||||
|
"select " + nameof(UserIdentity.HoursPerWeek) + " From UserIdentity where " + nameof(UserIdentity.Id) + "=?";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user