コード例 #1
0
 partial void DeleteMaterialToProduct(MaterialToProduct instance);
コード例 #2
0
 partial void UpdateMaterialToProduct(MaterialToProduct instance);
コード例 #3
0
 partial void InsertMaterialToProduct(MaterialToProduct instance);
コード例 #4
0
		private void detach_MaterialToProducts(MaterialToProduct entity)
		{
			this.SendPropertyChanging();
			entity.Product = null;
		}
コード例 #5
0
		private void attach_MaterialToProducts(MaterialToProduct entity)
		{
			this.SendPropertyChanging();
			entity.Material = this;
		}
コード例 #6
0
ファイル: MaterialsManager.cs プロジェクト: BizzyQuote/BQ2013
 public MaterialToProduct Edit(MaterialToProduct mp)
 {
     db.MaterialToProducts.InsertOnSubmit(mp);
     db.SubmitChanges();
     return mp;
 }