You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* ---------------------------- udkast til generic method, dog skal alle overliggende ID'er enten hedde det samme (e.g., ParentID, og så ID til eget id)
private async Task<List<T>> GetCategoryModels<T>(int informationBoardId)
{
var informationBoardList = new List<T>();
string sql = $"select * from {nameof(T)} where LicenseId = {licenseId};";
informationBoardList = await LoadData<InformationBoard, dynamic>(sql, new { });
return informationBoardList;
} */
Lav generic method til at hente models i DbService
The text was updated successfully, but these errors were encountered: