Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
935 views

Entity Framework - Inserting entity with multiple models and databases

I have my domain split into multiple Entity Framework models. I have some shared entities that span multiple models (named Lookup), however, these are replaced with "using" references using the ...
3
votes
1answer
122 views

Which are the HTML, and XML, special characters?

What are the special reserved character entities in HTML and in XML? The information that i have says: HTML: & (replace with &amp;) < (replace with &lt;) > (replace with ...
2
votes
3answers
237 views

Is looping through the entityreference the correct way?

I want to get all users that have a specific role to a list of usernames. Is using .Include to include all the users, and going through the UsersReference the best way to loop through all the users ...
2
votes
1answer
503 views

Problem querying with EntityReference

When I execute the code: public List<T> GetCustomerTxList(int customerId) { var matchingPocos = new List<T>(); using (linq.AOMSEntities dataRepos ...
2
votes
2answers
418 views

Entity Framework: Assign entity to property of another entity

I have these entities (this is just an abstraction I created for this post): Language District Description These are the references between them: District * - 1 Language Description * - 1 ...
2
votes
1answer
2k views

How to get to Foreign keys in the ADO.NET entity model?

I have 3 tables (and corresponding entities in the entity model) Game: Id - primay key ... other columns Player: Id - primary key ... other columns GamePlayer (a player can participate in many ...
1
vote
1answer
115 views

Dynamics CRM 2011 filtering data returned from web service

I am trying to filter data by the EntityReference with no luck. Without the where clause it runs fine with the where clause I get the following error: The server did not provide a meaningful ...
1
vote
0answers
95 views

EntityRef-object not refreshed after LINQ-update?

If have 2 entity classes, ProductEntity and CategoryEntity: [Table(Name = "Products")] public class ProductEntity { // Data Members private int _productID; private string _productName; ...
1
vote
1answer
3k views

obtaing the GUID for an EntityReference using Plugins in DynamicsCRM

This question is in relation to a Plugin which I am now creating for Dynamics CRM 2011. I have an entity which has 5 attributes. 1 of these attributes is a Lookup to another entity. What I am trying ...
1
vote
1answer
335 views

How to write out an EntityReference (e.g. &nbsp;) to an XmlWriter, read by XmlNodeReader?

Background I'm reading and writing an XML document using reader and writer, with filtering logic in between the read and write operations to determine which parts read should be written back out ...
1
vote
1answer
351 views

Mock a Linq to Sql EntityRef using Moq?

My datacontext contains a table named Userlog with a one to many relationship with table UserProfile. In class UserLog public UserProfile UserProfile { get {return this._UserProfile.Entity;} } ...
1
vote
2answers
3k views

EntityReference has an EntityKey property value that does not match?

I am attempting to add some entities that I have created. When I try and add the entity in question to the set (see code below) I get the following error: "The object could not be added or attached ...
1
vote
2answers
672 views

Linq to Entities, EntityReferences and DataGridViews

I am trying to select certain fields from my entity to be used as the datasource for a datagridview, but I haven't been able to make it work. Is such a thing possible? For example, I have a ...
0
votes
1answer
15 views

XML - entity references versus encoding

What is the difference between encoding and entity references in xml ?
0
votes
0answers
79 views

EntityRef object not rebuild automatically?

I have a Products-Enity class (full details at end of this question) public class ProductEntity { private int _productID; private string _productName; private int? _categoryID; ...
0
votes
1answer
150 views

How to convert character entity references into decimal (charCodes) in ActionScript

Is there a native method for converting character entity references into charCodes in ActionScript? For example, ∠ has a decimal or numeric entity reference of ∠. I assume that the ...
0
votes
3answers
148 views

problem wih including '&', <, > etc in xml attribute values

I want to create an xml file which will be used to store the structure of a java program. I am able to sucessfully parse the java program and create the tags as required..the problem arriseswhen I try ...
0
votes
2answers
68 views

EntityRef adding unwanted record

I have an BookOrder object which has an EntityRef var to a Book object. The objects are linked by book Id. When inserting a new BookOrder record, a new Book record also gets inserted into the book ...
0
votes
1answer
506 views

Is EntityReference.Load checking for EntityReference.IsLoaded?

Hi I was wondering if EntityReference.Load method includes If Not ref.IsLoaded Then ref.Load() My question is basically: Dim person = Context.Persons.FirstOrDefault person.AddressReference.Load() ...
0
votes
3answers
2k views

Java - SAX parser on a XHTML document

I'm trying to write a SAX parser for an XHTML document that I download from the web. At first I was having a problem with the doctype declaration (I found out from here that it was because W3C have ...