如何在 Simple.data 中使用表类型



如何使用Simple.data中的TableType进行以下查询:

//Type -MyType
GId int
StartDate datetime
EndDate datetime
//Table - MyTable
Id int
GId int
Text varchar
StartDate Datetime
EndDate Datetime
Select * from MyTable T1 inner join MyType T2 on T1.GID = T2.GID
and T1.StartDate between T2.StartDate and T2.EndDate
and T1.EndDate between T2.StartDate and T2.EndDate

据我所知,没有一个 Simple.Data 提供程序支持 TableType。如果要使用它们,标准回退是编写使用它们的存储过程。然后,通过 Simple.Data 运行 sproc。

相关内容

  • 没有找到相关文章

最新更新