FreeSql学习笔记——11.LinqToSql
作者:互联网
前言
Init
dotnet add package FreeSql.Extensions.Linq
说明
- 请尽量不要在 ISelect 模式下的使用 Linq 方法:GroupJoin、Select、SelectMany、Join、DefaultIfEmpty;
- 如果一定要在 ISelect 中使用 .Select() 方法,请务必在 .ToList() 之前调用它;
- IQueryable 的实现目前不支持 GroupBy,可以考虑使用 RestoreSelect 方法转回 ISelect 进行查询
ISelect与Queryable的转换
var query = _freeSql.Select<Student>().AsQueryable();
query.RestoreToSelect();
示例
(from s in _freeSql.Select<Student>()
select s).ToList();
SELECT a.[Id], a.[Name], a.[Age], a.[Status], a.[AddTime], a.[Remark], a.[Version], a.[ClassId]
FROM [Student] a
(from s in _freeSql.Select<Student>()
join c in _freeSql.Select<Class>() on s.ClassId equals c.Id into temp
from sc in temp.DefaultIfEmpty()
where s.Status == StatusEnum.Normal
select new
{
SName = s.Name,
CName = sc.Name
})
.Page(2, 10)
.ToList();
SELECT a.[Name] as1, sc.[Name] as2
FROM [Student] a
LEFT JOIN [Class] sc ON a.[ClassId] = sc.[Id]
WHERE (a.[Status] = 1)
ORDER BY a.[Id]
OFFSET 10 ROW
FETCH NEXT 10 ROW ONLY
标签:11,Name,FreeSql,Linq,ISelect,LinqToSql,freeSql,sc,Select 来源: https://www.cnblogs.com/zousc/p/16350989.html