zgow

ASP.NET

[ASP.NET] エラー:Your startup project ‘RestApiApp’ doesn’t reference Microsoft.EntityFrameworkCore.Design.

エラーの内容dotnetコマンドでマイグレーションファイルを作る時に使ったときに以下のようなエラーが発生。「Your startup project 'RestApiApp' doesn't reference Microsoft.Enti...
ASP.NET

[ASP.NET] エラー:Method ‘Fragment’ in type ‘Microsoft.EntityFrameworkCore.Design.Internal.CSharpHelper’ from assembly ‘Microsoft.EntityFrameworkCore.Design,

エラーの内容以下のようなエラーが発生した。「Method 'Fragment' in type 'Microsoft.EntityFrameworkCore.Design.Internal.CSharpHelper' from assemb...
Angular

[Angular] JasmineテストのMatchers一覧

概要Angularのテストして利用されるJasmineのMatchersを一覧にしてまとめていきます。Matchersとは以下のように、期待値を比較するのに使われるメソッドです。expect(テスト値).toBe(期待値);Matchers...
Angular

Angularのng testをVSCodeでデバッグする方法

デバッグの設定プロジェクト直下の.vscode/launch.jsonファイルに、"name": "ng test"の所が、ng testでデバッグができるようになる設定が書いてます。{ // For more information, ...
Angular

[Angular] イベントバインディングのイベント一覧

概要以下のようにAngularのイベントバインディングを使う時に指定する、(click)のようなイベントについて主要なものをまとめておきます。<button (click)="onSubmit()">送信</button>Angularのイ...