我正在使用 ServiceStack.OrmLite(版本 3.8.5)并且我有以下内容:
var report = dbCommand.Select<UploadedMediaReport>(x => x.Id == message.Id &&
(int)x.BitRate == (int)message.BitRate &&
(int)x.MediaFormat == (int)message.Format
).FirstOrDefault();
在哪里
public class UploadedMediaReport
{
public MediaBitRate BitRate { get; }
public MediaFormat Format { get; }
..
}
对于生成的 SQL,使用枚举的字符串值而不是 int 值,即。错误的 SQL 是:
select ... bitRate = 'High' and Format = 'MP4'
它应该在哪里
select ... bitRate = 1 and Format = 3
如何更改它以使其正常工作?