Tagged Questions

1
vote
3answers
44 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
28 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 …
0
votes
5answers
90 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
3answers
29 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
votes
5answers
112 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 …
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
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 …
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 …
0
votes
1answer
33 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?
0
votes
2answers
39 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 …
0
votes
3answers
17 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
3answers
36 views

How to map this legacy table with NHibernate (Fluent)?

New to NHibernate. Having trouble wrapping my head around how to map this legacy table. CREATE TABLE [dbo].[CmnAddress]( [addressId] [int] NOT NULL, [objectType] [varchar](63) NULL, [objectId] [int] …

1 2 3 4 5 24 next
15 30 50 per page