-
```
It seemed that the latest version of Dapper have a bug about mapper cache?
ChildrenCount is from following sql:
sql = "select d.ID, d.Version, d.DName, d.Position, count(distinct child.ID)
Child…
-
```
It seemed that the latest version of Dapper have a bug about mapper cache?
ChildrenCount is from following sql:
sql = "select d.ID, d.Version, d.DName, d.Position, count(distinct child.ID)
Child…
-
```
It seemed that the latest version of Dapper have a bug about mapper cache?
ChildrenCount is from following sql:
sql = "select d.ID, d.Version, d.DName, d.Position, count(distinct child.ID)
Child…
-
```
It seemed that the latest version of Dapper have a bug about mapper cache?
ChildrenCount is from following sql:
sql = "select d.ID, d.Version, d.DName, d.Position, count(distinct child.ID)
Child…
-
The insert error is:
System.Data.SQLite.SQLiteException: SQL logic error
near ")": syntax error
Apparently, the culprit is the following command
`
var cmd = $"INSERT INTO {tableName}…
-
When performing data synchronization, the source table's data volume is too large, causing the memory to blow up.
In a more formal context, you might say:
During the process of data synchronizatio…
-
I want to be able to expand mapped type in intellisense
Currently, mapped types is displayed directly with the mapper and original type, which is unhelpful as hell
![2018-11-13 12 33 16](https:/…
-
### Describe the problem
I get the following messages when creating a table with a computed point column:
```
updateTableTriggers() error: not existing Table or Column
updateTableTriggers() error:…
-
## MyBatis version
3.5.15
## Database vendor and version
mysql8
## Test case or example project
## Steps to reproduce
create table and import data
```sql
create table if not exist…
-
个人感觉 Example 组装各种动态条件很便利,想使用通用 Mapper 实现动态查询。表目前可以实现动态指定,字段也可以,只是发现返回类型必须是 POJO,因为返回字段的不确定性,所以很难写出 POJO。
```
@Data
@EqualsAndHashCode(callSuper = false)
public class DynamicTable extends HashMap…