Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

102
votes
38answers
6k views

Why do we need entity objects?

Ok, I realize I might be downvoted into oblivion for this question, especially given my stance on the matter, but I really need to see some honest, thoughtful debate on the merits of the currently ...
24
votes
3answers
2k views

What is the difference between “LINQ to Entities”, “LINQ to SQL” and “LINQ to Dataset”

I've been working for quite a while now with LINQ. However, it remains a bit of a mystery what the real differences are between the mentioned flavours of LINQ. The successful answer will contain a ...
23
votes
5answers
20k views

Convert XML/HTML Entities into Unicode String in Python

I'm doing some web scraping and sites frequently use HTML entities to represent non ascii characters. Does Python have a utility that takes a string with HTML entities and returns a unicode type? For ...
22
votes
1answer
725 views

Why not use an IoC container to resolve dependencies for entities/business objects?

I understand the concept behind DI, but I'm just learning what different IoC containers can do. It seems that most people advocate using IoC containers to wire up stateless services, but what about ...
15
votes
5answers
4k views

What Belongs to the Aggregate Root

This is a practical Domain Driven Design question: Conceptually, I think I get Aggregate roots until I go to define one. I have an Employee entity, which has surfaced as an Aggregate root. In the ...
13
votes
3answers
23k views

In HTML I can make a checkmark with ✓ . Is there a corresponding X-mark?

Is there a coresponding X mark to ✓ (✓)? What is it?
13
votes
5answers
2k views

Do you have a common base class for Hibernate entities?

Do you have a common base class for Hibernate entities, i.e. a MappedSuperclass with id, version and other common properties? Are there any drawbacks? Example: @MappedSuperclass() public class ...
8
votes
9answers
6k views

Special Characters in XML

I am creating a left navigation system utilizing xml and xsl. Everything was been going great until I tried to use a special character in my xml document. I am using » and I get th error. ...
6
votes
3answers
136 views

Polymorphic Associations in .NET

How do I effectively/efficiently create polymorphic associations in .NET? That being said, I have a few more granular questions that I would love to see as part of the broader answer. Technologies ...
6
votes
5answers
2k views

C++: Designing a component-based entity system - advanced problems

In my game engine, that is written in C++, I've moved away from the classical hierarchical entity system and build up a component-based one. It works roughly in this way: An entity is merely a ...
6
votes
3answers
2k views

How to indicate a columns as NOT NULL in a view?

I'm trying to use a view to create an ADO.NET entity using a view. However, that view does not have a single column that is NOT NULL. One thing that occurred to me was to create a NOT NULL column on ...
6
votes
2answers
8k views

The type or namespace name 'Objects' does not exist in the namespace 'System.Data'

I am using entities, C# and SQL Server to create an n-tier app. I am creating some base classes common to all my DAL components. In this base class, i want to handle the connection state of the ...
5
votes
3answers
97 views

Opinion requested: for static values, is it better to use Enums or Entities?

I'm trying to solve a dilemna that has been nagging me for the last few months. My colleagues and I completely disagree on a technical problem, and I would like our beloved community's opinion on the ...
5
votes
3answers
630 views

In DDD, what are the actual advantages of value objects?

I have gotten so far that I understand entity objects have an ID while value object have not, but in the most common example you have the person entity that have a address value object attached to it. ...
4
votes
5answers
648 views

Handling entities in a game - C++

As a small excersize I am trying to write a very small, simple game engine that just handles entities (moving, basic AI etc.) As such, I am trying to think about how a game handles the updates for ...
4
votes
2answers
198 views

Is there a way to keep entities intact while parsing html with DomDocument?

I have this function to ensure every img tag has absolute URL: function absoluteSrc($html, $encoding = 'utf-8') { $dom = new DOMDocument(); // Workaround to use proper encoding $prehtml ...
4
votes
2answers
1k views

Is there a reference for EF4 Fluent API syntax?

I keep searching the web for examples of the new fluent API syntax in Microsoft's Entity Framework technology previews ... I come up with bits and pieces here and there. Is there any reliable place ...
4
votes
1answer
1k views

jQuery Escaping HTML from a Textarea

I want to escape HTML tags to entity names, taking text from a textarea and putting the result in a second textarea such that: <mytag> becomes &lt;mytag&gt; I'm using .html() and ...
4
votes
2answers
1k views

Entity Framework v4 -> need some help with POCO's and Entities

I'm using EF4 and I've got two entities that I wish to map to the same POCO. I'm not sure how I can do this. Entity 1 → Foo (this represents a table FOO in the db) POCO → Foo Entity 2 → ...
4
votes
3answers
383 views

PHP DomDocument XML Load with Broken XML Data

How do you deal with broken data in XML files? For example, if I had <text>Some &improper; text here.</text> I'm trying to do: $doc = new DOMDocument(); $doc->validateOnParse ...
4
votes
3answers
734 views

How to parse badly formed XML in Java?

I have XML that I need to parse but have no control over the creation of. Unfortunately it's not very strict XML and contains things like: <mytag>This won't parse & contains an ...
3
votes
4answers
265 views

Naming convention: singular vs plural for classes describing entities in PHP

I think that the standard practice to name tables in MySQL is to use plural names. The classes refering to those tables should also be plural? For example, imagine that you have a table called ...
3
votes
4answers
230 views

Obtain XML entity replacement text from DOM in Xerces

The Javadoc for org.w3c.dom.Entity states: XML does not mandate that a non-validating XML processor read and process entity declarations made in the external subset or declared in parameter ...
3
votes
5answers
391 views

.NET .ToList function is WAY WAY too slow

We're having alot of troubles here with the .ToList command, it's used in VB.NET with a MVC ASP.NET web project. We have ~2000 entries in our database, we use a LINQ command to SELECT and ORDER the ...
3
votes
1answer
182 views

Sequences with Dynamic Entities in EclipseLink

I'm trying to get sequences with Dynamic Entities to work in EclipseLink and I need some help. I'm defining my dynamic entity like the following: EntityManagerFactory emf = ...
3
votes
1answer
135 views

What is the Aggregate root in this case

I have these entities User Task - every task must have a user assigned Project - a task can be assigned to a project but it's not necessary, user must be assigned as a project creator TaskStatus - ...
3
votes
1answer
117 views

Suggestion for a flex game communication between entities

I'm currently developing a Flex game which is a kind of table and cards game. Thinking about developing other games using entities from this one, I chose for creating my entities decoupled from the ...
3
votes
3answers
403 views

Layered Architecture in Entity Framework 4.0

Hi I am trying architect a small project. I planning to have Data acess, Business Service, WcfService, UI Layer. I am trying to use EF 4.0 and MVC 2.0. My question is where to generate the ...
3
votes
1answer
79 views

.NET XML unhelpfully resolves entities on Save

I have a simple XML file like so: <?xml version="1.0" encoding="UTF-8"?> <foo attr="blah &#176; blah"/> When I load it into the .NET XmlDocument and issue a Save, i.e.: xmlDoc = ...
3
votes
1answer
132 views

Value Objects Vs Entities

Quick question... When approaching something like an email address the immediate idea is to treat this as a value object. If we have a number of entities though, say a customer, a contact, and a ...
3
votes
3answers
1k views

Programmatically loading Entity classes with JPA 2.0?

With Hibernate you can load your Entity classes as: sessionFactory = new AnnotationConfiguration() .addPackage("test.animals") .addAnnotatedClass(Flight.class) ...
3
votes
2answers
1k views

How to make Nokogiri transparently return un/encoded Html entities untouched?

How can I use Nokogiri with having html entities (like German umlauts) untouched? I.e.: # this is fine node = Nokogiri::HTML.fragment('<p>&ouml;</p>') node.to_s # => ...
3
votes
4answers
2k views

DOMDocument::loadXML vs. HTML Entities

I currently have a problem reading in XHTML as the XML parser doesn't recognise HTML character entities so: <?php $text = <<<EOF <?xml version="1.0" encoding="utf-8" ...
3
votes
2answers
976 views

What are the advantages or disadvantages of using dbml for linq2sql queries?

I am currently reading Pro Asp.Net MVC, and they are building all of their linq2sql entity classes by hand, and mapping them with the linq mapping attributes. However, everyone else I see (from ...
3
votes
3answers
83 views

HTML >> Very simple question

Hey ppl, can someone tell me the &#num; for that >> sign. The one where the >> are one character. Thanks :) Bonus points for << aswell ^_^
3
votes
1answer
1k views

Is there some functionality in/for Delphi that converts a string with html named and numbered entities to unicode text?

I read data from a mysql database that has is filled by php scripts. All special characters are converted to named or numbered html entities (for example & a m p ; & # 2 8 6 ;). I know of no ...
3
votes
3answers
4k views

How do you convert HTML entities to Unicode and vice versa in Python?

Duplicate: Convert XML/HTML Entities into Unicode String in Python How do you convert HTML entities to Unicode and vice versa in Python?
2
votes
2answers
78 views

Properly using .Net entities in MVC3

I am following this article: http://msdn.microsoft.com/en-us/data/gg685467 I have my UserModel: using System; using System.ComponentModel.DataAnnotations; using System.Data.Entity; namespace ...
2
votes
2answers
98 views

CDI Injection in Hibernate Entities

We are using CDI(JSR 299) in our application (JSF2/Seam3.0/Hibernate 3.5.6/GlassFish 3.1.1) While we are unable to inject resources(Helper POJOs) in our managed beans using @Inject, we cannot do the ...
2
votes
2answers
33 views

How do I get the first value from this collection using Linq to Entities?

I have the following code. The foreach at the end is unnecessary because there will only be one row returned. So how do I grab a value from userGroups without having to loop? Thanks Kevin using ...
2
votes
1answer
68 views

Tweepy Entities Appengine

I'm working on a twitter client and I'm using tweepy, but with it I can't obtain entities in the user_timeline. How can I get the entities? Have someone updated the Tweepy for AppEngine Library?
2
votes
1answer
71 views

EF4 - is it possible to see which ObjectContext is tracking a particular Entity?

The title just about says it all. I'm trying to solve a mystery I'm having attempting to use AutoMapper with MVC 2 and EF4. Specifically, I keep getting an exception telling me that some specific ...
2
votes
2answers
118 views

filtering escaped angle brackets in javascript

I have a javascript feature that allows users to place arbitrary text strings on a page. I don't want them to be able to insert html or other code, just plain text. So I figure that stripping out ...
2
votes
1answer
39 views

Linq to Entities with Subselect in select part

We are starting with a MVC project using EF. We will need write a lot of queries in LINQ using subselect and don't have figured out yet how this could be done. The most simple case of these is in ...
2
votes
1answer
181 views

core data : differences between managed object and entities?

i would like to understand a bit more Core Data, why do we "fetch" and search for entities while the entities are "inside" managed objects? For example : NSManagedObjectContext *moc = [self ...
2
votes
2answers
157 views

DDD: bounded contexts - domain entities that reference concerns in another bounded context

I'm getting confused on how to define bounded contexts where there are shared concerns between them, and how to represent this with Domain Entities. For example: A customer has many products in a ...
2
votes
1answer
30 views

Why do some browsers allow “invalid” character entities?

As far as I can tell from the documentation, the semicolon is required as part of the syntax for entity reference. So a non-breaking space must be &nbsp; not &nbsp. However, it looks like ...
2
votes
3answers
220 views

Fixing unescaped XML entities in Java with Regex?

I have some badly formatted XML that I must parse. Fixing the problem upstream is not possible. The (current) problem is that ampersand characters are not always escaped properly, so I need to ...
2
votes
1answer
108 views

Different results in Entity Framework than LINQ to SQL

I was first using LINQ to SQL in my project and used the following statement: var ProjectRouteEmails = EmailManagerDAL.Context.ProjectRouteEmails .Where(p => p.ProjectID == ProjectID); ...
2
votes
1answer
656 views

Error: “Index '' does not exist on table” when trying to create entities in Doctrine 2.0 CLI

I have a mySQL database. I am trying to get Doctrine2 to create entities from the MySQL schema. I tried this with our production database, and got the following error: ...

1 2 3 4 5