コード例 #1
0
 private static ResourceProfile DDProfiler <T>(IEntityResource <T> r) where T : DDictionary => DDictionaryOperations <T> .Profile(r);
コード例 #2
0
 /// <inheritdoc />
 protected override ResourceProfile DefaultProfile <T>(IEntityResource <T> resource) => DDictionaryOperations <T> .Profile(resource);
コード例 #3
0
 /// <inheritdoc />
 protected override int DefaultInsert <T>(IRequest <T> request) => DDictionaryOperations <T> .Insert(request);
コード例 #4
0
 /// <inheritdoc />
 protected override int DefaultDelete <T>(IRequest <T> request) => DDictionaryOperations <T> .Delete(request);
コード例 #5
0
 /// <inheritdoc />
 protected override IEnumerable <T> DefaultSelect <T>(IRequest <T> request) => DDictionaryOperations <T> .Select(request);