需要Realm Swift for Swift 3.0而不是Swift 3.0.1

时间:2016-10-29 01:07:52

标签: realm

我刚刚在我的项目中做了一个包含RealmSwift的迦太基引导程序。我收到的消息是:

  

使用Swift 3.0.1编译的模块无法导入到Swift 3.0中。

我正在使用Xcode 8.0而不是Xcode 8.1。我的迦太基文件有这个:

  

github“realm / realm-cocoa”

我应该在我的Carthage文件中指定什么才能获得RealSwift for Swift 3.0?

1 个答案:

答案 0 :(得分:0)

找到答案。使用此命令:

with MaxDate as( Select LegKey, Max(UpdateReceived) as MaxDate from @Table group by LegKey ) 
select * from MaxDate as a   
inner join @Table as b 
     on b.LegKey=a.LegKey 
    and b.UpdateReceived=a.MaxDate