Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

एक फ़ील्ड में एकाधिक मान (विदेशी कुंजी?)

लिंक 2 SQL डेटाक्लास मेरे लिए कैसे दिखते हैं:

वह कोड जो इसके साथ जाता है:

//I have 2 columns in my dataGridView, Id 1st amount 2nd
//I added 3 items for testing
List<Tuple<int, int>> cart = new List<Tuple<int,int>>();
foreach (DataGridViewRow row in dataGridView1.Rows)
{
    if (row.Cells[0].Value != null && row.Cells[1].Value != null)
    { 
        cart.Add(new Tuple<int, int>(Convert.ToInt32(row.Cells[0].Value.ToString()),Convert.ToInt32(row.Cells[1].Value.ToString())));
                //Now each list item will have .Item1 (productId) and .Item2 (amount)
    }
}
using (DataClasses1DataContext dataContext = new DataClasses1DataContext())
{
    //The tables you add in the dataContext are accessible by name
    Order order = new Order();
    dataContext.Orders.InsertOnSubmit(order);
    dataContext.SubmitChanges(); // Submit once so we get an orderId
    foreach (Tuple<int, int> product in cart)
    {
        OrderProduct orderProduct = new OrderProduct();
        orderProduct.OrderId = order.OrderID;
        orderProduct.ProductId = product.Item1;
        orderProduct.Amount = product.Item2;
        dataContext.OrderProducts.InsertOnSubmit(orderProduct);
    }
    dataContext.SubmitChanges();
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. एसएसआईएस - एकाधिक कॉलम मानों को शून्य में कनवर्ट करें

  2. एसक्यूएल ऑपरेशंस स्टूडियो (एसक्यूएलओपीएस) क्या है?

  3. SQL सर्वर 2008 में डिबगिंग संग्रहीत प्रक्रिया

  4. SQL सर्वर त्रुटि:दूरस्थ प्रक्रिया निष्पादित नहीं कर सका

  5. URL से रिपोर्ट जनरेट करें - SQL सर्वर रिपोर्टिंग सेवाएँ 2008