hytos / ID2.Manager / ID2.Manager.Dapper / Repository / ID2Repository.cs @ 81d15568
이력 | 보기 | 이력해설 | 다운로드 (602 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 ORDER BY Id"; |
21 |
return Query<ID2ProjectInfo>(query); |
22 |
} |
23 |
} |
24 |
} |