I have class A in namespace do.it.like.a.boss
,
After that I am creating another class A that it will be partial and the namespace will be do.it.like.a.child
Until now everything sounds good ... but
I have prop that I want to return the partial class and the actual data in my list is the original one
public do.it.like.a.child.A A
{
get
{
return my list.Where(x => x.id == someid).FirstOrDeffult(); // the list is do.it.like.a.boss.A objects
}
}
Is it even possible to do something in that case ?
Thanks