コード例 #1
0
 public UpserterInjection(IUpsertDbSet <T> blogContext)
 {
     Dependency = blogContext;
 }
コード例 #2
0
        public async Task <int> Execute(IUpsertDbSet <Blog> blogInserter)
        {
            await blogInserter.AddAsync(BlogToInsert);

            return(await blogInserter.Save());
        }