This commit is contained in:
2020-12-15 15:49:27 +00:00
parent 9c65341b49
commit 477c0e90b1
6 changed files with 24 additions and 11 deletions

View File

@@ -710,13 +710,13 @@ namespace AyaNova.Util
/////////////////////////////////////////////////////
//Seed some test memos
{
for (int x = 0; x < 10; x++)
for (int x = 0; x < 100; x++)
{
Memo memo = new Memo();
memo.Name = Fake.Rant.Review();
memo.Name = Fake.Lorem.Sentence();
memo.Notes = Fake.Lorem.Paragraphs();
memo.ToId = 1;
memo.FromId = Fake.Random.Long(2, 15);
memo.ToId = Fake.Random.Long(1, 15);
memo.FromId = Fake.Random.Long(1, 15);
memo.Tags = RandomTags();
using (AyContext ct = ServiceProviderProvider.DBContext)
{