これは、両方を処理したい場合IComparable
とIComparable<>
var OrderByOptions = (from p in typeof(Project).GetProperties()
let type = p.PropertyType
where typeof(IComparable).IsAssignableFrom(type) ||
typeof(IComparable<>).MakeGenericType(type).IsAssignableFrom(type)
select p.Name).ToArray();
IComparable
サーバー側の順序付けを行っている場合、 /IComparable<T>
が SQL で同じになるという保証はないことに注意してください。例えば:
bool b1 = typeof(IComparable).IsAssignableFrom(typeof(int?));
bool b2 = typeof(IComparable<int?>).IsAssignableFrom(typeof(int?));
どちらも false を返します。しかし、nullable int は SQL で確実に匹敵します。
おそらくホワイトリストの方が良いでしょう。
public static readonly HashSet<Type> ComparableTypes = new HashSet<Type>
{
typeof(bool), typeof(bool?),
typeof(char), typeof(char?),
typeof(string),
typeof(sbyte), typeof(sbyte?), typeof(byte), typeof(byte?),
typeof(short), typeof(short?), typeof(ushort), typeof(ushort?),
typeof(int), typeof(int?), typeof(uint), typeof(uint?),
typeof(long), typeof(long?), typeof(ulong), typeof(ulong?),
typeof(float), typeof(float?),
typeof(double), typeof(double?),
typeof(decimal), typeof(decimal?),
typeof(DateTime), typeof(DateTime?),
typeof(DateTimeOffset), typeof(DateTimeOffset?),
typeof(TimeSpan), typeof(TimeSpan?),
typeof(Guid), typeof(Guid?),
};
var OrderByOptions = (from p in typeof(Project).GetProperties()
let type = p.PropertyType
where ComparableTypes.Contains(type)
select p.Name).ToArray();