0
votes
1answer
40 views
Is it right to use IoC for the extensibility of my entities or domain model?
Hi Everyone,
I've came across a dilemma which I think is worth discussing here.
I have a set of domain objects (you can also call them entities, if you like), which get some data …
0
votes
3answers
56 views
Proper entity types for XHTML, XML and inside inline JavaScript
First, the way I understand it, it's more appropriate to use numeric entities in an XHTML document, such as " instead of ", is that right?
Second, for my RSS XML …
0
votes
0answers
6 views
.NET Entities with Child Elements
Hi,
i'm building a DAL in C# that is connecting to an ancient versione of informix, so i cannot use entity framework. I wrote the entities classes referencing them self in a paren …
4
votes
3answers
58 views
PHP DomDocument XML Load with Broken XML Data
Hi,
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();
…
0
votes
1answer
29 views
Linq one to many insert when many already exists
So I'm new to linq so be warned what I'm doing may be completely stupid!
I've got a table of caseStudies and a table of Services with a many to many relasionship
the case studies …
0
votes
1answer
26 views
How do I model a selected entity instance from a set of possible instances in Core Data?
I have two Core Data entities, say Account and House. Each account can have a list of houses and a house can only be in one account, so that's a regular one-to-many relationship wi …
0
votes
1answer
29 views
Server Tags in DataSource
Is Possible to put some server tag in Session Field to access a constant string???
<asp:EntityDataSource ID="EntityDataSourceProcesos" runat="server" ConnectionString="name …
0
votes
1answer
36 views
PHP DomDocument Save XML with HTML
Hi,
How would I save an XML file opened with DomDocument so that the HTML inside won't be encoded into HTML entities?
0
votes
2answers
19 views
Entity association problem
I have three tables:
User: UserId (pk)
FirstName
Lastname
Messages: MessageId (pk)
Heading
Body
User_Messages: UserId
MessageI …
0
votes
3answers
84 views
Repository Pattern and Linq to sql
I 'm trying to implement user authentication and authorization using roles table, user table and a xref table having userid, roleid.
For implementing generic repoistory to update …
5
votes
2answers
305 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 Aggre …
0
votes
1answer
23 views
How to deal with HTML-entities for publishing multilingual content
In case of publishing any text online as a HTML page – I face the problem of the correct reflection of symbols of several languages which require extended Latin character encoding. …
0
votes
1answer
53 views
Can one prevent Genshi from parsing HTML entities?
I have the following Python code using Genshi (simplified):
with open(pathToHTMLFile, 'r') as f:
template = MarkupTemplate(f.read())
finalPage = template.generate().render('ht …
0
votes
1answer
42 views
How to display entities taken from XML with Javascript?
There MUST be an easy way to do that! I didn't want to ask this question again if somebody already asked it but I couldn't find something similar in this site... anyway :
So I hav …
1
vote
1answer
84 views
NHibernate and DTOs
I am considering bringing NHibernate into a project but have a question on how read only DTOs would be implemented. Entities are easy, but what about scenarios where you have a fie …
