hytos / ID2.Manager / ID2.Manager.Dapper / Repository / ID2Repository.cs @ 989966d4
이력 | 보기 | 이력해설 | 다운로드 (631 Bytes)
1 | be2dacfc | yoush97 | 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 | 81d15568 | yoush97 | public IEnumerable<ID2ProjectInfo> GetID2ProjectList() |
18 | be2dacfc | yoush97 | { |
19 | string query = $@" |
||
20 | 989966d4 | yoush97 | SELECT * FROM Projects WHERE ifnull(Name, '') <> '' ORDER BY Id"; |
21 | 81d15568 | yoush97 | return Query<ID2ProjectInfo>(query); |
22 | be2dacfc | yoush97 | } |
23 | } |
||
24 | } |