프로젝트

일반

사용자정보

통계
| 개정판:

hytos / ID2.Manager / ID2.Manager.Dapper / Repository / ID2Repository.cs @ 989966d4

이력 | 보기 | 이력해설 | 다운로드 (631 Bytes)

1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

    
7
using System.Data.SQLite;
8

    
9
using ID2.Manager.Data.Models;
10

    
11
namespace ID2.Manager.Dapper.Repository
12
{
13
    public class ID2Repository : BaseRepository
14
    {
15
        public ID2Repository(string connectionStr, DatabaseType databaseType) : base(connectionStr, databaseType) { }
16

    
17
        public IEnumerable<ID2ProjectInfo> GetID2ProjectList()
18
        {
19
            string query = $@"
20
SELECT * FROM Projects WHERE ifnull(Name, '') <> '' ORDER BY Id";
21
            return Query<ID2ProjectInfo>(query);
22
        }
23
    }
24
}
클립보드 이미지 추가 (최대 크기: 500 MB)