fmwviormv / sqlite-net

Automatically exported from code.google.com/p/sqlite-net
0 stars 0 forks source link

Relationship #46

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
How to give relationship to table like code first model or any other way

like

public class Product
{
  public int id{get;set;}
  public string Name{get;set;}
} 

public class Order
{
 public int OrderId{get;set;}
 public List<Product> Products{get;set;}
}

Original issue reported on code.google.com by makasana...@gmail.com on 10 Nov 2012 at 9:39