Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im making a report in the VS 2010 report designer, the main source of the data is the Lines entity. But I need an extra field from another entity Parts. So I added a partial class of Line with the extra property like so :

public partial class Line
{
    public string ShelfLocation
    {
        get
        {
            using (RSContext rs = new RSContext())
            {
                return rs.Parts.First(x => x.Code == this.Part).ShelfLocation;
            }
        }
    }

Problem is I still cant see this extra field from the report designer :

enter image description here

How can I acheive this without creating another view?

Many thanks in advance.

EDIT 1 (both in same namespace) :

enter image description here

share|improve this question
are you sure the partial class is in the same namespace of the original one ? – Felice Pollano Apr 27 '12 at 15:14
@FelicePollano yes both in same namespace. – MuhammadA Apr 27 '12 at 15:26

2 Answers

up vote 1 down vote accepted

I dont know if there is a better solution but for the time being I added this manually to the report and it worked :

<Fields>    
...
    <Field Name="ShelfLocation">
          <DataField>ShelfLocation</DataField>
          <rd:TypeName>System.String</rd:TypeName>
   </Field>
</Fields>
share|improve this answer

You do need to make sure both classes are in the same namespace.

You may consider create an object of type Line and verifying that you can see the new property you added:

var testLine = new Line();
testLine.ShelfLocation  // <-- Does ShelfLocation show up as a valid property? Do your other properties like Debit, Id, etc. also show up?
share|improve this answer
Yes it passes the above test. Both the context and the partial class are in RS namespace. – MuhammadA Apr 27 '12 at 15:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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