I am using this code to retrieve the receipient name and receipient number but the recpt.receipient_name and recpt.receipient_number are null.

The excel table is of this format

Name Number

andrew 1223

james 12223

dave 454545

//select names from the excel file with specified sheet name
var receipients = from n in messages.Worksheet<BulkSmsModel>(sheetName)
                  select n;

foreach (var recpt in receipients)
{
    BulkSms newRecpt = new BulkSms();

    if (recpt.receipient_number.Equals("") == true || recpt.receipient_number == 0)
    {
        continue;
    }

    newRecpt.receipient_name = recpt.receipient_name;
    newRecpt.receipient_number = Int32.Parse(recpt.receipient_number.ToString());

    IBsmsRepo.insertReceipient(newRecpt);
    IBsmsRepo.save();
}
link|improve this question

50% accept rate
You haven't given us any idea what is in the spreadsheet so maybe there is not data for that particular row for those columns – Ben Robinson Sep 7 '11 at 9:42
there is data in the spreadsheet. it contains two named headers(name and number) and under these are various names and corresponding numbers – plasteezy Sep 7 '11 at 9:48
So how many items in recipients and if there are more than one then are the properties null in all of them? – Ben Robinson Sep 7 '11 at 9:52
yes the properties are null in all of the 10 rows in the recipient – plasteezy Sep 7 '11 at 10:50
@plasteezy: could you please add a picture to your question with the way the sheet is structured? and also show us code for BulkSmsModel and BulkSms – Răzvan Panda Sep 7 '11 at 12:37
show 1 more comment
feedback

1 Answer

Since the property names on the BulkSmsModel class do not correlate directly to the column names in the spreadsheet, you will need to map the property names to the column names.

Assuming messages is the ExcelQueryFactory object, this would be the code.

var messages = new ExcelQueryFactory("excelFileName");
messages.AddMapping<BulkSmsModel>(x => x.receipient_name, "Name");
messages.AddMapping<BulkSmsModel>(x => x.receipient_number, "Number");

var receipients = from n in messages.Worksheet<BulkSmsModel>(sheetName)
                  select n;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.