generate sql trigger through ef migration

Solutions on MaxInterview for generate sql trigger through ef migration by the best coders in the world

showing results for - "generate sql trigger through ef migration"
Juan
04 Oct 2018
1migrationBuilder.Sql( "CREATE TRIGGER SetUserTimestamp AFTER UPDATE ON Users BEGIN UPDATE Users SET Timestamp = randomblob( 8 ) WHERE Id = NEW.Id; END" );
2
Esther
09 May 2019
1migrationBuilder.Sql( "DROP TRIGGER SetUserTimestamp" );
2