Hi, I have 2 tables in database. Formula and Ingredient. They have many-to-many relationship, so I have an association table in the db thats called FormulaIngredient.
I am using C#.net and SQL server 2005. My FormulaIngredient table has ID, formulaID, ingredientID, ingredientAmount. For this extra ingredientAmount field I created a association class in C#. Now, I will save a formula in the database. and after that I want to save the list of ingredients of that formula in the FOrmulaIngredient Table. How do I do it? I cannot save any data in the FormulaIngredient Table. My FormulaIngredient class is
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace NutritionLibrary.Entity {
public class FormulaIngredient
{
private int iD;
private Formula objFormula;
private Ingredient objIngredient;
private float ingredientAmount;
public FormulaIngredient()
{
}
public virtual int ID
{
get { return iD; }
set { iD = value; }
}
public virtual int IngredientID
{
get { return objIngredient.IngredientID; }
set { objIngredient.IngredientID = value; }
}
public virtual int FormulaID
{
get { return objFormula.FormulaID; }
set { objFormula.FormulaID = value; }
}
public virtual Ingredient ObjIngredient
{
get { return objIngredient; }
set { objIngredient = value; }
}
public virtual Formula ObjFormula
{
get { return objFormula; }
set { objFormula = value; }
}
public virtual float IngredientAmount
{
get { return ingredientAmount; }
set { ingredientAmount = value; }
}
}
}
here is the mapping file for FormulaIngredient:
<many-to-one name="ObjIngredient" column="ingredientID"
class="NutritionLibrary.Entity.Ingredient, NutritionLibrary" not-null="true" />
class="NutritionLibrary.Entity.Formula, NutritionLibrary" not-null="true" />
<property name="IngredientAmount" column="ingredientAmount" type="float" not-null="true" />
Please help!!!!
