-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGenericRepo.linq
26 lines (20 loc) · 911 Bytes
/
GenericRepo.linq
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Query Kind="Expression">
<NuGetReference>Dapper</NuGetReference>
<Namespace>Dapper</Namespace>
</Query>
// Define other methods and classes here
public class GenericRepo
{
private readonly IDbConnection Connection;
public GenericRepo(IDbConnection connection)
{
Connection = connection;
}
public IEnumerable<T> Select<T>() => Connection.Query<T>($"SELECT * FROM {typeof(T).Name};", commandType: CommandType.Text);
public IEnumerable<T> SelectWithFilter<T>(T poco, string sql) => Connection.Query<T>(sql, poco, commandType: CommandType.Text);
public T Store<T>(T poco, string sql) => Connection.QueryFirstOrDefault<T>(sql, poco, commandType: CommandType.Text);
public IEnumerable<T> SelectWithPaging<T>(int offset, int limit)
{
return Connection.Query<T>($"SELECT * FROM {typeof(T).Name} ORDER BY 1 OFFSET {offset} ROWS FETCH NEXT {limit} ROWS ONLY;", commandType: CommandType.Text);
}
}