xxxxプログラマのメモ

先人に感謝と敬意:自分の困ったこと調べたことのメモ

2020-10-01から1ヶ月間の記事一覧

Amazon SageMaker

aws.amazon.comThanks!

Multipartsection to MemoryStream

await using (MemoryStream memoryStream = new MemoryStream()) { var fileMultipartSection = section.AsFileSection(); await fileMultipartSection.FileStream.CopyToAsync(memoryStream); memoryStream.Position = 0; } stackoverflow.comThanks!

UriBuilder with query

C#

ohke.hateblo.jpThanks!

Load configuration from appsettings.json

mseeeen.msen.jpThanks!

System.Text.Json.JsonException: A possible object cycle was detected which is not supported. This can either be due to a cycle or if the object depth is larger than the maximum allowed depth of 32.

shuhelohelo.hatenablog.com services.AddControllers().AddNewtonsoftJson(settings => settings.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore);Thanks!

GroupJoin CS0411

stackoverflow.com匿名クラスとかでついついやってしまう。Thanks!

EF left join only specific columns

EF のLeft Join の結合でDefaultIfEmptyを指定すると、対象テーブルの全てのカラムにアクセスしてしまう。 回避使用と粘ったが、上手くいかず。 長いSQLだったので、暫定的に分類して対応。本当は1つにまとめたい。。。。LINQのメソッド構文で内部結合、外部…

ASP.NET Core Web Api BestPractice

docs.microsoft.comcode-maze.comASP.NET Core Web API のコントローラー アクションの戻り値の型 | Microsoft Docs Thansk!

File Download Api with ASP.NET Core

tekitoumemo.hatenablog.comstackoverflow.comdocs.microsoft.com Update from. hiromatsu.hatenablog.comThanks!