1
データをDESC順に並べ替える必要があります。これは私のコードです:ダッパー拡張でDESC順序を使用してOrder by節に従ってデータをソートする方法はありますか?
var predicate = Predicates.Sort<myPoco>(x => x.name, false);
var result = GetList<myPoco>(predicate).ToList();
protected IEnumerable<T> GetList<T>(object predicate, IList<ISort> sort = null, IDbTransaction transaction = null, int? commandTimeout = null, bool buffered = false) where T : class
{
var result = connection.GetList<T>(predicate, sort, transaction, commandTimeout, buffered);
return
}
Dapper拡張機能を使用すると、データを並べ替えることができません。私はDapperの拡張のClassMapper
を使用してmyPoco
プロパティをマッピングしています
PropertyName was not found for...
:上記のコードは次のようなエラーがスローされます。