Search results for query: *

  1. sajadshafi

    Getting Data from the database but without ID column?

    then it will assign same value to multiple product items... while inserting data into database the id's my data will have may already be present in second product table e.g: data in table one: 1 iphone 20k 2 Samsung 15k data in table second: 1 Nokia 10k 2 Mac 50k...
  2. sajadshafi

    Getting Data from the database but without ID column?

    Sorry to Make it complex... i will go like this: I have already created two databases, both the databases have product table, Now which means i have two product tables, from database one and from database two. Both product tables have same columns.. the ProductId of both of the tables is...
  3. sajadshafi

    Getting Data from the database but without ID column?

    I didn't explained it perfectly as i am new here asking questions.... I have two databases on two different servers now when i take data from one database and send it to another database i get the error. the error is simple, ProductId is auto-increment so it doesn't accept the id from the data...
  4. sajadshafi

    Getting Data from the database but without ID column?

    i am retrieving data as: var products = productContext.Products.ToList(); this will select all data from product table along with all fields including id... and then i send it to webapi as: Client client = new Client(); client.PostRequest(new PostData<object>()...
  5. sajadshafi

    Getting Data from the database but without ID column?

    I am creating a Database to database sync application. now i want to get data from one database and then send to another database but i dont want to send the id field to the second database.
Back
Top Bottom