Skip to content

Commit 1021e6f

Browse files
authored
Update Benchmarks test app from Program + Startup to just Program.cs (aspnet#2141)
* Update Benchmarks test app from Program + Startup setup to new Program only setup. * Add in the application started and application shutting down output (and a few others) so that we can still start testing once we get "Application started" message.
1 parent fa65092 commit 1021e6f

3 files changed

Lines changed: 404 additions & 437 deletions

File tree

src/Benchmarks/Data/World.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@ namespace Benchmarks.Data
1010
[Table("world")]
1111
public class World
1212
{
13+
[UseColumnAttribute]
1314
[Column("id")]
1415
public int Id { get; set; }
1516

1617
[IgnoreDataMember]
1718
[NotMapped, DbValue(Ignore = true)]
1819
public int _Id { get; set; }
1920

21+
[UseColumnAttribute]
2022
[Column("randomnumber")]
2123
public int RandomNumber { get; set; }
2224
}

0 commit comments

Comments
 (0)