Last active
January 17, 2017 02:00
-
-
Save EricCote/1b074333c784d141cb9bf30da765be01 to your computer and use it in GitHub Desktop.
Web Api Lab 4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pour le lab 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected override void Seed(ProductService.Models.ProductServiceContext context) | |
{ | |
// New code | |
context.Products.AddOrUpdate(new Product[] { | |
new Product() { ID = 1, Name = "Hat", Price = 15, Category = "Apparel" }, | |
new Product() { ID = 2, Name = "Socks", Price = 5, Category = "Apparel" }, | |
new Product() { ID = 3, Name = "Scarf", Price = 12, Category = "Apparel" }, | |
new Product() { ID = 4, Name = "Yo-yo", Price = 4.95M, Category = "Toys" }, | |
new Product() { ID = 5, Name = "Puzzle", Price = 8, Category = "Toys" }, | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace ProductService.Models | |
{ | |
public class Product | |
{ | |
public int Id { get; set; } | |
public string Name { get; set; } | |
public decimal Price { get; set; } | |
public string Category { get; set; } | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Data.Entity; | |
namespace ProductService.Models | |
{ | |
public class ProductsContext : DbContext | |
{ | |
public ProductsContext() | |
: base("name=ProductsContext") | |
{ | |
} | |
public DbSet<Product> Products { get; set; } | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ProductService.Models; | |
using System.Data.Entity; | |
using System.Data.Entity.Infrastructure; | |
using System.Linq; | |
using System.Net; | |
using System.Threading.Tasks; | |
using System.Web.Http; | |
using System.Web.OData; | |
namespace ProductService.Controllers | |
{ | |
public class ProductsController : ODataController | |
{ | |
ProductsContext db = new ProductsContext(); | |
private bool ProductExists(int key) | |
{ | |
return db.Products.Any(p => p.Id == key); | |
} | |
protected override void Dispose(bool disposing) | |
{ | |
db.Dispose(); | |
base.Dispose(disposing); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[EnableQuery] | |
public IQueryable<Product> Get() | |
{ | |
return db.Products; | |
} | |
[EnableQuery] | |
public SingleResult<Product> Get([FromODataUri] int key) | |
{ | |
IQueryable<Product> result = db.Products.Where(p => p.Id == key); | |
return SingleResult.Create(result); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<IHttpActionResult> Post(Product product) | |
{ | |
if (!ModelState.IsValid) | |
{ | |
return BadRequest(ModelState); | |
} | |
db.Products.Add(product); | |
await db.SaveChangesAsync(); | |
return Created(product); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<IHttpActionResult> Patch([FromODataUri] int key, Delta<Product> product) | |
{ | |
if (!ModelState.IsValid) | |
{ | |
return BadRequest(ModelState); | |
} | |
var entity = await db.Products.FindAsync(key); | |
if (entity == null) | |
{ | |
return NotFound(); | |
} | |
product.Patch(entity); | |
try | |
{ | |
await db.SaveChangesAsync(); | |
} | |
catch (DbUpdateConcurrencyException) | |
{ | |
if (!ProductExists(key)) | |
{ | |
return NotFound(); | |
} | |
else | |
{ | |
throw; | |
} | |
} | |
return Updated(entity); | |
} | |
public async Task<IHttpActionResult> Put([FromODataUri] int key, Product update) | |
{ | |
if (!ModelState.IsValid) | |
{ | |
return BadRequest(ModelState); | |
} | |
if (key != update.Id) | |
{ | |
return BadRequest(); | |
} | |
db.Entry(update).State = EntityState.Modified; | |
try | |
{ | |
await db.SaveChangesAsync(); | |
} | |
catch (DbUpdateConcurrencyException) | |
{ | |
if (!ProductExists(key)) | |
{ | |
return NotFound(); | |
} | |
else | |
{ | |
throw; | |
} | |
} | |
return Updated(update); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<IHttpActionResult> Delete([FromODataUri] int key) | |
{ | |
var product = await db.Products.FindAsync(key); | |
if (product == null) | |
{ | |
return NotFound(); | |
} | |
db.Products.Remove(product); | |
await db.SaveChangesAsync(); | |
return StatusCode(HttpStatusCode.NoContent); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<connectionStrings> | |
<add name="ProductsContext" connectionString="Data Source=(localdb)\msSqlLocalDb; | |
Initial Catalog=ProductsContext; Integrated Security=True; MultipleActiveResultSets=True; | |
AttachDbFilename=|DataDirectory|ProductsContext.mdf" | |
providerName="System.Data.SqlClient" /> | |
</connectionStrings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ProductService.Models; | |
using System.Web.OData.Builder; | |
using System.Web.OData.Extensions; | |
.... | |
public static class WebApiConfig | |
{ | |
public static void Register(HttpConfiguration config) | |
{ | |
// New code: | |
ODataModelBuilder builder = new ODataConventionModelBuilder(); | |
builder.EntitySet<Product>("Products"); | |
config.MapODataServiceRoute( | |
routeName: "ODataRoute", | |
routePrefix: null, | |
model: builder.GetEdmModel()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment