当前位置: 首页>>代码示例>>C#>>正文


C# Delta.Put方法代码示例

本文整理汇总了C#中System.Web.OData.Delta.Put方法的典型用法代码示例。如果您正苦于以下问题:C# Delta.Put方法的具体用法?C# Delta.Put怎么用?C# Delta.Put使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Web.OData.Delta的用法示例。


在下文中一共展示了Delta.Put方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Put

        // PUT: odata/Notes(5)
        public async Task<IHttpActionResult> Put([FromODataUri] Guid key, Delta<Note> patch)
        {
            Validate(patch.GetEntity());

            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            Note note = await db.Notes.FindAsync(key);
            if (note == null)
            {
                return NotFound();
            }

            patch.Put(note);

            try
            {
                await db.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!NoteExists(key))
                {
                    return NotFound();
                }
                else
                {
                    throw;
                }
            }

            return Updated(note);
        }
开发者ID:NicoJuicy,项目名称:blog-todomvc-angular-odata,代码行数:36,代码来源:NotesController.cs

示例2: Put

        // PUT: odata/Students(5)
        public async Task<IHttpActionResult> Put([FromODataUri] int key, Delta<Student> patch)
        {
            Validate(patch.GetEntity());

            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            Student student = await db.Students.FindAsync(key);
            if (student == null)
            {
                return NotFound();
            }

            patch.Put(student);

            try
            {
                await db.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!StudentExists(key))
                {
                    return NotFound();
                }
                else
                {
                    throw;
                }
            }

            return Updated(student);
        }
开发者ID:gyb333,项目名称:Gyb.Platform,代码行数:36,代码来源:StudentsController.cs

示例3: Put

        // PUT: odata/Customers(5)
        public async Task<IHttpActionResult> Put([FromODataUri] int key, Delta<Customer> patch)
        {
            Validate(patch.GetEntity());

            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            var customer = await _db.Customers.FindAsync(key);
            if (customer == null)
            {
                return NotFound();
            }

            patch.Put(customer);

            try
            {
                await _db.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!CustomerExists(key))
                {
                    return NotFound();
                }
                throw;
            }

            return Updated(customer);
        }
开发者ID:chauey,项目名称:Swashbuckle.OData,代码行数:33,代码来源:CustomersController.cs

示例4: Put

        // PUT: odata/PlatformsImporter(5)
        public async Task<IHttpActionResult> Put([FromODataUri] string key, Delta<Platform> patch)
        {
            Validate(patch.GetEntity());

            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            Platform platform = await db.Platforms.FindAsync(key);
            if (platform == null)
            {
                return NotFound();
            }

            patch.Put(platform);

            try
            {
                await db.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!PlatformExists(key))
                {
                    return NotFound();
                }
                else
                {
                    throw;
                }
            }

            return Updated(platform);
        }
开发者ID:pandazzurro,项目名称:uPlayAgain,代码行数:36,代码来源:PlatformsImporterController.cs

示例5: Put

		// PUT: odata/Users(5)
		public async Task<IHttpActionResult> Put( [FromODataUri] int key, Delta<Account> patch )
		{
			Validate( patch.GetEntity() );

			if ( !ModelState.IsValid )
			{
				return BadRequest( ModelState );
			}

			var user = await _db.Accounts.SingleOrDefaultAsync( u => u.Id == key );
			if ( user == null )
			{
				return NotFound();
			}

			patch.Put( user );

			try
			{
				await _db.SaveChangesAsync();
			}
			catch ( DbUpdateConcurrencyException )
			{
				if ( !ApplicationUserExists( key ) )
				{
					return NotFound();
				}
				else
				{
					throw;
				}
			}

			return Updated( user );
		}
开发者ID:MusicCityCode,项目名称:ConferenceServices,代码行数:36,代码来源:UsersController.cs

示例6: Put

        // PUT: odata/Person(5)
        public IHttpActionResult Put([FromODataUri] int key, Delta<Person> patch)
        {
            Validate(patch.GetEntity());

            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            Person person = db.People.Find(key);
            if (person == null)
            {
                return NotFound();
            }

            patch.Put(person);

            try
            {
                db.SaveChanges();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!PersonExists(key))
                {
                    return NotFound();
                }
                else
                {
                    throw;
                }
            }

            return Updated(person);
        }
开发者ID:Guanyi,项目名称:W07a,代码行数:36,代码来源:PersonController.cs

示例7: Put

        // PUT: odata/OptionSetEntities(5)
        public IHttpActionResult Put([FromODataUri] int key, Delta<OptionSetEntity> patch)
        {
            Validate(patch.GetEntity());

            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            OptionSetEntity optionSetEntity = db.OptionSetEntities.Find(key);
            if (optionSetEntity == null)
            {
                return NotFound();
            }

            patch.Put(optionSetEntity);

            try
            {
                db.SaveChanges();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!OptionSetEntityExists(key))
                {
                    return NotFound();
                }
                else
                {
                    throw;
                }
            }

            return Updated(optionSetEntity);
        }
开发者ID:DureSameen,项目名称:ContactsCRMOdata,代码行数:36,代码来源:OptionSetEntitiesController.cs

示例8: PutToAddress

        public IHttpActionResult PutToAddress(int key, Delta<OpenAddress> address)
        {
            IList<OpenCustomer> customers = CreateCustomers();
            OpenCustomer customer = customers.FirstOrDefault(c => c.CustomerId == key);
            if (customer == null)
            {
                return NotFound();
            }

            // Verify the origin address
            OpenAddress origin = customer.Address;
            VerifyOriginAddress(key, origin);

            address.Put(origin); // Do put

            // Verify the put address
            Assert.Equal("UpdatedStreet", origin.Street);
            Assert.Equal("UpdatedCity", origin.City);

            Assert.NotNull(origin.DynamicProperties);
            KeyValuePair<string, object> dynamicProperty = Assert.Single(origin.DynamicProperties); // only one
            Assert.Equal("Publish", dynamicProperty.Key);
            Assert.Equal(new Date(2016, 2, 2), dynamicProperty.Value);

            return Updated(customer);
        }
开发者ID:chinadragon0515,项目名称:WebApi,代码行数:26,代码来源:OpenComplexTypeTest.cs

示例9: Put

        // PUT: odata/ResidentViewModels(5)
        public IHttpActionResult Put([FromODataUri] int key, Delta<Contracts.IResident> patch)
        {
            Validate(patch.GetEntity());

            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            Contracts.IResident residentViewModel = db.GetAllResidents().Where(r => r.Id == key).FirstOrDefault();
            if (residentViewModel == null)
            {
                return NotFound();
            }

            patch.Put(residentViewModel);

            //try
            //{
            //    db.EditRoom(residentViewModel);
            //}
            //catch (DbUpdateConcurrencyException)
            //{
            //    if (!ResidentViewModelExists(key))
            //    {
            //        return NotFound();
            //    }
            //    else
            //    {
            //        throw;
            //    }
            //}

            return Updated(residentViewModel);
        }
开发者ID:ddNils,项目名称:TestWebApi03,代码行数:36,代码来源:ResidentViewModelsController.cs

示例10: PutToCurrentShapeOfCircle

        public IHttpActionResult PutToCurrentShapeOfCircle(int key, Delta<Circle> shape)
        {
            Window window = _windows.FirstOrDefault(e => e.Id == key);
            if (window == null)
            {
                return NotFound();
            }

            Circle origin = window.CurrentShape as Circle;
            if (origin == null)
            {
                return NotFound();
            }

            shape.Put(origin);
            return Ok(origin);
        }
开发者ID:chinadragon0515,项目名称:WebApi,代码行数:17,代码来源:ComplexTypeInheritanceControllers.cs

示例11: PutToAddress

        public IHttpActionResult PutToAddress(int key, Delta<Address> address)
        {
            Account account = Accounts.FirstOrDefault(a => a.Id == key);
            if (account == null)
            {
                return NotFound();
            }

            if (account.Address == null)
            {
                account.Address = new Address();
            }

            address.Put(account.Address);

            return Updated(account);
        }
开发者ID:chinadragon0515,项目名称:WebApi,代码行数:17,代码来源:OpenTypeControllers.cs

示例12: Put

        // PUT: odata/Players(5)
        public IHttpActionResult Put([FromODataUri] int key, Delta<Player> delta)
        {
            Validate(delta.GetEntity());

            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            // TODO: Get the entity here.
            var player = (from p in _cricketContext.Players
                          where p.Id == key
                          select p).First();

            delta.Put(player);

            // TODO: Save the patched entity.

            // return Updated(player);
            return StatusCode(HttpStatusCode.NotImplemented);
        }
开发者ID:kevinrjones,项目名称:edft,代码行数:22,代码来源:PlayersController.cs

示例13: Put

        // PUT: odata/IMEI(5)
        public async Task<IHttpActionResult> Put([FromODataUri] int key, Delta<IMEIToCallsign> patch)
        {
            var imeiToCallsign = await _imeiService.GetFromId(key);
            if (imeiToCallsign == null)
            {
                return NotFound();
            }

            patch.Put(imeiToCallsign);

            Validate(imeiToCallsign);

            if (!ModelState.IsValid)
            {
                return BadRequest(ModelState);
            }

            await _imeiService.RegisterCallsign(imeiToCallsign.IMEI, imeiToCallsign.CallSign, imeiToCallsign.Type);

            var newIMEI = await _imeiService.GetFromIMEI(imeiToCallsign.IMEI);

            await _logService.LogIMEIRegistered(User.Identity.GetUserName(), newIMEI.IMEI, newIMEI.CallSign, newIMEI.Type);

            return Updated(newIMEI);
        }
开发者ID:trichards57,项目名称:new-bike-tracker,代码行数:26,代码来源:IMEIController.cs


注:本文中的System.Web.OData.Delta.Put方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。