i use Entities Framework Code First and I've next POCO classes:
public class Product
{
public int ProductID { get; set; }
public int Title{ get; set; }
public int Price { get; set; }
public int ProductCategoryID { get; set; }
public virtual ProductCategory ProductCategory { get; set; }
}
public class ProductCategory
{
public int ProductCategoryID { get; set; }
public int Title{ get; set; }
public virtual ICollection<Product> Products { get; set; }
}
So let the product has a simple method MakeSale
which depends on ProductCategory
public int void GiveSale()
{
//I can do like this ...
switch (this.ProductCategoryID)
{
case 1: return this.Price * 0,8;
break;
case 2: return 0;
...
}
}
But I do not like this approach, i want use OOP and have something like this:
public class Dress : Product
{
public override int void GiveSale()
{
return this.Price * 0,8;
}
}
public class Shoes : Product
{
public override int void GiveSale()
{
return 0;
}
}
How can I do this with Entities Framework and saving ease of use with my entities?
You can try to use EF Inheritance for your objects. It's also available in Code First - http://weblogs.asp.net/manavi/archive/2010/12/24/inheritance-mapping-strategies-with-entity-framework-code-first-ctp5-part-1-table-per-hierarchy-tph.aspx
There are 3 different approaches based on what you need:
You need to map your Dress, Shoes entities based on some data in OnModelCreating method. For example:
In that case when you will load them from DBContext, it will create needed type automatically:
and then you can update data, and save Dress\Shoes as usual Poco objects in Code first by calling SaveChanges