1
vote
3answers
34 views
How to flatten Linq-To-Sql table mappings?
I have a Linq-To-Sql mapping between POCO classes and my DB. I want to be able to add properties on my classes which represent slightly more complex constructs than simple scalr values.
For instance, …
0
votes
1answer
25 views
JPA mapping: Reusing entities in multiple relationships
Let's say I have:
class Unit {
private TextContainer source;
private List<TextContainer> targets;
}
Can I annotate class TextContainer in such a way that it works within both …
1
vote
2answers
59 views
How to map XML schemas to C/C++ code?
What the best way to map XML schemas to C/C++?
Here is an example:
------ C/C++ -----
struct zone {
char *var_name;
float var_value;
};
------ XML -----
<xs:element …
1
vote
2answers
27 views
TreeView node mapping in winform
I have a treeview control, and it's child node is mapped to element in a list, when the element in the list state changes, i need to update the corresponding treeview node, also, when user select a …
1
vote
3answers
27 views
Linq to Sql Mapping
When I modify the structure of the table in Sql Server ,won't it be automatically reflected in the "Dbml" Layout designer ?Each and every time i have to delete the tables in "dbml' layout designer and …
1
vote
0answers
57 views
How to best map database-aware entity types between application layers
I have an ASP.NET MVC app with a primitive repository layer that currently serves LINQ to SQL entities back to the controllers which then send them to the views. I now want to start using some …
-1
votes
5answers
111 views
Python: List of lists of integers to absolute value to single number
If i had a list of list of integers say:
[['12' '-4' '66' '0'], ['23' '4' '-5'
'0'], ['23' '77' '89' '-1' '0']]
I wanted to convert the numbers to their absolute values and then to a single …
0
votes
5answers
87 views
Map strings to numbers maintaining the lexicograhic ordering
I'm looking for an algorithm or function that is able to map a string to a number in such way, that the resulting values correspond the lexicographic ordering of strings. Example:
"book" -> 50000
…
1
vote
4answers
87 views
XML Mapping - XSLT or Code?
I have had a number of discussions recently over whether to use XSLT or code to write mapping functionality from one XML format to another or even when converting to something other than XML. Now I am …
0
votes
3answers
16 views
Is there an easy method of process mapping a complex SSIS package so I can print it out?
I have taken ownership of a very complex SSIS package with multiple files and routes. Is there an easy method of process mapping the whole process automagically so I can print it out and understand …
0
votes
1answer
30 views
Hibernate mapping collection by column
Hi there,
lets take this example
<class name="Product">
<id name="serialNumber" column="productSerialNumber"/>
<property name="category" column="category" />
<set …
0
votes
1answer
31 views
How would you implement an interactive floorplan / building map?
I need to build an "interactive floorplan" for a shopping centre (or two).
Many shopping centre websites already have this (eg Bluewater in the UK)
Traditionally, the way to build such a floorplan / …
0
votes
1answer
22 views
How to map EditModel to Command Messages?
Jimmy Bogard at Los Techies says that he maps his EditModel to Command Messages instead of mapping EditModel to DomainModel. Can anyone explain this further?
1
vote
4answers
52 views
php - generating a world map from border data
I have found the shape data for the borders of all the countries and a class to process it and I have written a script to convert the longitude and latitude to a pixel location on an image and to draw …
0
votes
2answers
38 views
Rendering a point light using 6 spot lights?
I'm trying to render 6 spot lights to create a point light for a shadow mapping algorithm.
I'm not sure if I'm doing this right, I've more or less followed the instructions here when setting up my …
