Advanced Forum Search Results
-
Does hierarchy support mean that RIA Services will support inheritance? Or does it refer to “the flattening support” mentioned in other posts? To me there is no point starting to develop anything other than test projects with RIA Services until support for inheritance is added, otherwise I would have to redesign my data layer when/if it gets ...
-
The mapping is not generated, instead the attributes are applied manually.
-
Hey,
Thanks for the reply. I have tried the sugested solution but did not get it to work.
The get method:
public IQueryable<LegalEntity> GetLegalEntitys()
{
DataLoadOptions loadOptions = new DataLoadOptions();
loadOptions.LoadWith<LegalEntity>(p => p.Address);
...
-
Hi,
I use Attribute-Based Mapping (LINQ to SQL) , where in one of the classes I have a EntityRef like so:
…
private EntityRef<Address> _address;
[System.Data.Linq.Mapping.Association(Storage = "_address", ThisKey = "LegalEntityID", OtherKey = "AddressID")]
public Address Address
{
get { return ...