active questions tagged mapping - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T07:09:15Z http://stackoverflow.com/feeds/tag/mapping http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1845476/nhibernate-how-to-map-two-tables-to-a-single-non-persistent-class 0 nhibernate: how to map two tables to a single non-persistent class? npeBeg 2009-12-04T07:50:31Z 2009-12-04T14:04:00Z <p>I have two similar tables:</p> <p>Table1:</p> <pre><code>[ id ] | [ name ] </code></pre> <p>Table2:</p> <pre><code>[ id ] | [ name ] </code></pre> <p>and I need to read/write data using only one class:</p> <pre><code>public class TwinTable { public virtual int Id { get; set; } public virtual string Name1 { get; set; } public virtual string Name2 { get; set; } } </code></pre> <p>Plus one of the tables may or may not have an entity with the specified Id, and both tables may or may not have entities, so Name1 can be null and Name2 can be null and both of them can be null.</p> <p>I can not change the structure of the DB, and it's not a good thing if i have to add something to it.</p> <p>Hope for your help!</p> http://stackoverflow.com/questions/1833941/tfs-build-server-build-of-branch 1 TFS build-server build of branch? Jason Williams 2009-12-02T16:11:01Z 2009-12-04T01:35:43Z <p>We have a TFS 2008 project with two branches ("Main" and "NewFeature"). Each is a complete, independent "copy" (variant) of the source code.</p> <p>By changing the workspace mappings, we can map either variant onto our local PCs and have been working with both branches with no problems.</p> <p>However, if I set up the mappings to switch our build server on to the NewFeature branch (which should simply swap in the NewFeature source code without changing anything else as far as the build server is concerned) I get errors:</p> <pre><code>There is no working folder mapping for $/Main/Product.sln </code></pre> <p>i.e. when it is building from the NewFeature branch, something is still looking in the <strong>Main</strong> branch, even though there are no references anywhere in the source code to this branch. It appears to be caching some reference to Main?!</p> <p>I have done a completely clean build (deleted the build folder from the server and run the build with /p:ForceGet=true to make sure the mapping is flushed through to the server, and there are no files on the server that might cache the workspace bindings), but this doesn't help.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1830315/how-can-i-use-a-collada-dae-file-for-environment-mapping 0 How can I use a Collada (dae file) for environment mapping? Aaron 2009-12-02T02:35:02Z 2009-12-04T01:16:52Z <p>Where can I find documentation and/or an example of how to use environment mapping in a .dae file viewable by either the included Collada viewer (viewer-d.exe) or the RenderMoney viewer (osgviewer.exe)?</p> http://stackoverflow.com/questions/1831186/many-to-many-on-the-same-table-with-additional-columns 3 Many-to-many on the same table with additional columns Petar Minchev 2009-12-02T07:21:39Z 2009-12-03T15:27:30Z <p>I have a class User. A user can be a friend with many other users. The relationship is mutual. If A is a friend of B then B is a friend of A. Also I want every relation to store additional data - for example the date when two users became friends. So this is a many-to-many relationship on the same table with additional columns. I know that a middle class Friendship should be created(containing two user ids and column for the date). But I am coming short at mapping this with Hibernate. The thing that stops me is that the mapping is to the same table. I can solve it, if the many-to-many relationship was between two different tables.</p> http://stackoverflow.com/questions/1596321/enterprise-search-web-service-in-sharepoint 0 Enterprise Search web service in SharePoint aka 2009-10-20T18:02:15Z 2009-12-02T13:00:07Z <p>Hello,</p> <p>I have a question to Enterprise Search in SharePoint. I use this functionality over web service (.../_vti_bin/search.asmx). There are some standart set of attributes (Name, Title...) returned as search result. For more attributes I created new "Metadata Property Mappings" and started full crawl, to be sure attributes in index will be updated. So here my questions:</p> <ol> <li><p>Some of the attributes are in search results empty (for example property mapped on ows_BaseName). Is it a security issue?</p></li> <li><p>I need uniquely identify object returned from search (to this time only files). So I want to use ows_GUID, because I need to get more informations from list service about this object. But I can't find property ows_GUID in list of properties in "Metadata Property Mappings". Can I map any property?</p></li> <li><p>Actually if I could map all properties in "Metadata Property Mappings", I didn't need to use extra call on List web service. But if I can't, how can I uniquely identify object returned from search service to query a List service?</p></li> </ol> <p>Regards</p> <p>Anton Kalcik</p> http://stackoverflow.com/questions/1832447/iis-6-client-certs-renewal-of-already-11-mapped-client-certs 0 IIS 6: client certs renewal of already 1:1 mapped client certs krile 2009-12-02T11:52:16Z 2009-12-02T12:04:43Z <p>hi, if a client certificate which is used for mapping in iis6 is renewed. do then i have to renew the mapping (one to one mapping!) also?!?! at least it looks so! why this? the public key is same as in the expired cert! i would assume/think that iis 6 is using the public key for mapping! can someone confirm or clarify, please! thanks in advance, k.</p> http://stackoverflow.com/questions/1781707/simple-convention-automapper-for-two-way-mapping-entities-to-from-viewmodels 1 Simple Convention Automapper for two-way Mapping (Entities to/from ViewModels) Omu 2009-11-23T08:05:28Z 2009-11-30T11:18:41Z <p>check this out, I just wrote a simple automapper, it takes the value from the property with the same name and type of one object and puts it into another, and you can add exceptions (ifs, switch) for each type you may need<br/></p> <p>so tell me what do you think about it ?</p> <p>I did it so I could do something like this:</p> <pre><code>Product –&gt; ProductDTO ProductDTO –&gt; Product </code></pre> <p>that's how it begun:</p> <p><strong>I use the "object" type in my Inputs/Dto/ViewModels for DropDowns because I send to the html a IEnumerable&lt;SelectListItem&gt; and I receive a string array of selected keys back</strong></p> <pre><code> public void Map(object a, object b) { var pp = a.GetType().GetProperties(); foreach (var pa in pp) { var value = pa.GetValue(a, null); // property with the same name in b var pb = b.GetType().GetProperty(pa.Name); if (pb == null) { //no such property in b continue; } if (pa.PropertyType == pb.PropertyType) { pb.SetValue(b, value, null); } } } </code></pre> <p><strong>UPDATE:</strong> the real usage:<br/> the Build methods (Input = Dto):</p> <pre><code> public static TI BuildInput&lt;TI, T&gt;(this T entity) where TI: class, new() { var input = new TI(); input = Map(entity, input) as TI; return input; } public static T BuildEntity&lt;T, TI, TR&gt;(this TI input) where T : class, new() where TR : IBaseAdvanceService&lt;T&gt; { var id = (long)input.GetType().GetProperty("Id").GetValue(input, null); var entity = LocatorConfigurator.Resolve&lt;TR&gt;().Get(id) ?? new T(); entity = Map(input, entity) as T; return entity; } public static TI RebuildInput&lt;T, TI, TR&gt;(this TI input) where T: class, new() where TR : IBaseAdvanceService&lt;T&gt; where TI : class, new() { return input.BuildEntity&lt;T, TI, TR&gt;().BuildInput&lt;TI, T&gt;(); } </code></pre> <p>in the controller:</p> <pre><code> public ActionResult Create() { return View(new Organisation().BuildInput&lt;OrganisationInput, Organisation&gt;()); } [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create(OrganisationInput o) { if (!ModelState.IsValid) { return View(o.RebuildInput&lt;Organisation,OrganisationInput, IOrganisationService&gt;()); } organisationService.SaveOrUpdate(o.BuildEntity&lt;Organisation, OrganisationInput, IOrganisationService&gt;()); return RedirectToAction("Index"); } </code></pre> <p>The real Map method</p> <pre><code>public static object Map(object a, object b) { var lookups = GetLookups(); var propertyInfos = a.GetType().GetProperties(); foreach (var pa in propertyInfos) { var value = pa.GetValue(a, null); // property with the same name in b var pb = b.GetType().GetProperty(pa.Name); if (pb == null) { continue; } if (pa.PropertyType == pb.PropertyType) { pb.SetValue(b, value, null); } else if (lookups.Contains(pa.Name) &amp;&amp; pa.PropertyType == typeof(LookupItem)) { pb.SetValue(b, (pa.GetValue(a, null) as LookupItem).GetSelectList(pa.Name), null); } else if (lookups.Contains(pa.Name) &amp;&amp; pa.PropertyType == typeof(object)) { pb.SetValue(b, pa.GetValue(a, null).ReadSelectItemValue(), null); } else if (pa.PropertyType == typeof(long) &amp;&amp; pb.PropertyType == typeof(Organisation)) { pb.SetValue(b, pa.GetValue&lt;long&gt;(a).ReadOrganisationId(), null); } else if (pa.PropertyType == typeof(Organisation) &amp;&amp; pb.PropertyType == typeof(long)) { pb.SetValue(b, pa.GetValue&lt;Organisation&gt;(a).Id, null); } } return b; } </code></pre> http://stackoverflow.com/questions/803718/constant-latitude-line-in-matlab 1 Constant Latitude Line in Matlab DMa 2009-04-29T18:48:01Z 2009-11-30T11:00:04Z <p>I'm new to mapping and would like to plot a line of constant latitude at -68 with longitude extending from -80 to -65. If I use linem or plotm with the four coordinates I just get a single point. The only way I can kind of create a fake lat line is to use a track2 great circle. But this line is not rounded the way a true latitude line would be. Does anyone have a solution?</p> <p>Here's what I'm using: Mapping Toolbox Version 2.6 (R2007b) 02-Aug-2007</p> <p>This code snippet is working but the line is not curved and I have to write the numbers in plotm in odd format.</p> <pre><code>LATMIN = -70; LATMAX = -65 ; LONMIN = -80; LONMAX = -65; [map,maplegend] = tbase(1,[LATMIN LATMAX],[LONMIN LONMAX]); figure(1); clf ham = axesm('MapProjection','eqdconic','MapParallels',[],'MapLatLimit',... [LATMIN LATMAX],'MapLonLimit',[LONMIN LONMAX]); setm(ham,'MLineLocation',LONMIN:5:LONMAX,... 'MLabelLocation',(ceil(LONMIN/10)10+10):10:(floor(LONMAX/10)10),... 'MeridianLabel','on',... 'PLineLocation',LATMIN:1:LATMAX,... 'PLabelLocation',LATMIN:5:(LATMAX-5),... 'ParallelLabel','on',... 'LabelFormat','signed',... 'flinewidth',0.1); hold on; plotm([-68.58455; -68.58455],[-80.0; 360-65.0],'mo-'); hf = framem; </code></pre> http://stackoverflow.com/questions/1816996/determining-the-projection-in-a-given-map 0 Determining the projection in a given map JP 2009-11-29T22:24:39Z 2009-11-29T23:07:30Z <p>I realise this is potentially not a programming question, however its a problem I keep bumping into <em>as</em> a programmer, so I figure others here might have useful knowledge to share.</p> <p>I have a map of a region of the earth (it could be any, but here's <a href="http://images.asc.ohio-state.edu/is/image/eHistory/world/images/maps/uk-map.jpg" rel="nofollow">an example</a>) how should I determine the projection used in the map and then how should I programatically transform latitude and longitude coordinates into pixel positions on the image.</p> <p>At the moment I have matlab code to open the image and plot the resulting (x,y) coord, but I can't figure out how to convert lat/longs to x,y!</p> <p>Any help at all would be greatly appreciated.</p> http://stackoverflow.com/questions/1812273/adding-a-map-overlay-on-a-uk-ordnance-survey-openspace-map 1 adding a map overlay on a UK Ordnance Survey OpenSpace map AP257 2009-11-28T11:12:12Z 2009-11-29T15:40:51Z <p>Does anyone have a code example of how to add an image overlay to an Ordnance Survey OpenSpace map?</p> <p><a href="http://openspace.ordnancesurvey.co.uk/openspace/OpenSpaceAPIDocs1.0.0/files/OpenSpace/Layer/MapOverlay-js.html#setHTML" rel="nofollow">The documentation</a> is not exactly comprehensive :)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1546806/entity-key-of-a-view-as-navigation-property 1 Entity key of a view as navigation property LukLed 2009-10-10T01:46:57Z 2009-11-29T02:56:48Z <p>I have a table</p> <p><code> CREATE TABLE Tasks<br/> ( <br/> &nbsp;&nbsp;ID INT IDENTITY(1,1) NOT NULL CONSTRAINT PRIMARY KEY PkTasks,<br/> &nbsp;&nbsp;...other fields...<br/> ) </code></p> <p>and a view</p> <p><code> CREATE VIEW VTaskInfo<br/> AS<br/> SELECT<br/> &nbsp;&nbsp;T.ID IDTask,<br/> &nbsp;&nbsp;...other fields...<br/> FROM <br/> &nbsp;&nbsp;Tasks T </code></p> <p>How can I create navigation property connecting 'Task' and 'VTaskoInfo' entities? Usually defining navigation properties requires deleting id property, but this time property is primary key and can't be deleted. I could change VTaskInfo definition to</p> <p><code> CREATE VIEW VTaskInfo<br/> AS<br/> SELECT<br/> &nbsp;&nbsp;T.ID IDTask,<br/> &nbsp;&nbsp;T.ID ID,<br/> &nbsp;&nbsp;...other fields...<br/> FROM <br/> &nbsp;&nbsp;Tasks T </code></p> <p>and specify ID as entity key and IDTask as navigation property, but I don't like this solution. Is there something else I can do?</p> <p>How do you map views in EF?</p> http://stackoverflow.com/questions/1018764/why-can-i-not-get-application-object-in-classic-asp-when-i-add-a-net-wildcard-ma 0 Why can I not get application object in classic ASP when I add a .NET Wildcard mapping to directory? Ron 2009-06-19T16:03:26Z 2009-11-28T08:00:04Z <p>We're migrating a site from classic asp to .NET. In the process, I need to use .NET authentication to secure the classic asp pages. This works great with wildcard mapping...unless the classic asp pages try to use something like the Application object. </p> <p>I have tried adding an HTTPHandler to pass the request to the asp.dll, but to no avail. </p> <p>Is what I am trying to do even possible?</p> http://stackoverflow.com/questions/395431/fluent-nhibernate-mapping 1 fluent nHibernate mapping Kudos2u2 2008-12-27T21:28:25Z 2009-11-28T03:00:03Z <p>I am working on a legacy system and have introduced fluent nHibernate but have one last mapping that I can not seem to get working.</p> <p>Code:</p> <pre><code>public class Permit { public int PermitId { get; set; } public char Discipline { get; set; } public PermitDetails PermitDetails { get; set; } } public PermitDetails { public int PermitId { get; set; } } public class GasPermitDetails : PermitDetails { ... permit details } public class ElectricalPermitDetails : PermitDetails { ... permit details } </code></pre> <p>Schema:</p> <pre><code>*tblPermit* PermitId, int Discipline, char .... some other columns *tblGas* PermitId, int ....gasDetails *tblElectrical* PermitId, int ....electrical details </code></pre> <p>(if tblPermit.Discipline is "G" we need to get the data out of tblGas. if tblPermit.Discipline is "E" we need to get the data out of tblElectrical). I have messing around trying to get this figured out but have not had any luck so far.</p> http://stackoverflow.com/questions/1649701/path-problem-with-modrewrite-xdebug-pdt-xampp-and-windows-xp 1 path problem with mod_rewrite, XDebug, PDT, XAMPP and Windows XP Delirium tremens 2009-10-30T13:00:36Z 2009-11-27T22:13:21Z <p>My mod_rewrite turns accounts/create into index.php?folder=accounts&amp;action=create, but pdt ignores it, so when I try to start a PHP Script debug session, I have to type a folder location in the file field and pdt doesn't accept.</p> <p>When PDT auto generates the URL for the PHP Web Page debug session, I go to <a href="http://localhost/myframe/index.php?XDEBUG%5FSESSION%5FSTART=ECLIPSE%5FDBGP&amp;KEY=12569067976875" rel="nofollow">http://localhost/myframe/index.php?XDEBUG%5FSESSION%5FSTART=ECLIPSE%5FDBGP&amp;KEY=12569067976875</a>, but myframe is in the frameworks folder, so I get a 404 error.</p> <p>When I check a breakpoint, uncheck Auto Generate, add frameworks before myframe in URL, set Start Debug from <a href="http://localhost/frameworks/myframe/accounts/create" rel="nofollow">http://localhost/frameworks/myframe/accounts/create</a> in Advanced and click Debug, the debugger doesn't stop at the breakpoint.</p> <p>UPDATE</p> <p>Debugging as PHP Web Page without mod_rewrite is working. Debugging as PHP Web Page with mod_rewrite isn't working. I'm using the following configuration.</p> <pre><code>php.ini: zend_extension = "\xampp\php\ext\php_xdebug.dll" xdebug.idekey=ECLIPSE_XDEBUG xdebug.profiler_enable=1 xdebug.remote_enable=1 xdebug.remote_handler="dbgp" xdebug.remote_host="localhost" xdebug.remote_mode="req" xdebug.remote_port=9000 Start -&gt; Control Panel -&gt; Firewall -&gt; Exceptions -&gt; Add Port -&gt; Name: XDebug Port number: 9000 Window -&gt; Preferences -&gt; PHP -&gt; Debug -&gt; PHP Debugger: XDebug Server: localhost PHP Executables: C:\xampp\php\php-cgi.exe Debug Configurations -&gt; MyFrame Web Page -&gt; Server -&gt; PHP Server -&gt; Configure -&gt; Server -&gt; Name: localhost Enter the URL that points to the document root of this server: http://localhost/frameworks Path Mapping -&gt; (serverpath) http://localhost/frameworks/myframe/index.php to (filesystem) C:\xampp\htdocs\frameworks\myframe\index.php (serverpath) http://localhost/frameworks/myframe/index.php to (workspace) /myframe/index.php File: /myframe/index.php URL: http://localhost/ by the left frameworks/myframe/index.php by the right Advanced -&gt; (checked) Open in Browser (checked) Debug All Pages .htaccess: &lt;IfModule mod_rewrite.c&gt; RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]*)/?([^/]*)/?([^/]*)$ index.php?folder=$1&amp;action=$2&amp;params=$3 [L] &lt;/IfModule&gt; </code></pre> http://stackoverflow.com/questions/1415375/get-map-position-when-wgs-84-lat-lon-when-upper-left-and-lower-right-corners-lat 0 Get map position when WGS-84 lat/lon when upper left and lower right corners' lat/lon are given Hans Wurstinghaus 2009-09-12T15:28:35Z 2009-11-27T17:35:42Z <p>Suppose I have a map, for example from openstreetmaps.org. I know the WGS-84 lat/lon of the upper left and lower right corner of the map. How can I find other positions on the map from given WGS-84 lat/lon coordinates?</p> http://stackoverflow.com/questions/1758095/mapping-points-from-euclician-2-space-onto-a-poincare-disc 0 Mapping points from Euclician 2-space onto a Poincare disc David Rutten 2009-11-18T18:33:21Z 2009-11-26T19:55:46Z <p>For some reason it seems that everyone writing webpages about Poincare discs is only concerned with how to represent lines and measure distances.</p> <p>I'd like to morph a collection of 2D points (as defined by x,y coordinates in the Euclidian plane) onto a Poincare disc, but I have no idea what the algorithm is supposed to be like. At this point I don't even know if it's possible to create a mapping between Euclidian 2-space and a Poincare disc...</p> <p>Any pointers?</p> <p>Goodwill, David</p> http://stackoverflow.com/questions/1796195/keeping-nhibernate-fluent-mapping-in-sync-with-the-database 0 Keeping nhibernate fluent mapping in sync with the database Mark Austen 2009-11-25T11:03:04Z 2009-11-25T12:53:44Z <p>We are currently using Fluent NHibernate and SQL Server 2008 in our c# development, however, the database schema has become too complex for Fluent to re-create the database when necessary so we are making changes to the database using scripts.</p> <p>This also means that the entity and mapping classes also need to be changed to remain in sync with the DB schema.</p> <p>Is there a tool or some clever way of doing this "automatically"?</p> <p>If we were to use DevForce from IdeaBlade, for example, their framework has tools to check the mapping against the schema and to update the mappings if required and we were wondering if something similar existed for Fluent.</p> <p>So, ladies and gentlemen, over to you...</p> http://stackoverflow.com/questions/1796574/lazy-load-nhibernate-one-to-one 0 Lazy load nhibernate one-to-one Morph 2009-11-25T12:22:09Z 2009-11-25T12:33:44Z <p>Hi</p> <p>I have a true one to one mapping. But I would like to use lazy loading(load on demand).</p> <p>I have Class Person with a association with Class Address. The mapping looks like this..</p> <p><strong>PERSON</strong></p> <pre><code>&lt;one-to-one name="address" class="Person" cascade="all-delete-orphan" access="field"&gt; </code></pre> <p><strong>ADDRESS</strong></p> <pre><code>&lt;class name="Address" table="Address" lazy="true"&gt; &lt;id name="id" column="addressId" type="Int32" access="field"&gt; &lt;generator class="foreign"&gt; &lt;param name="property"&gt;person&lt;/param&gt; &lt;/generator&gt; &lt;/id&gt; &lt;one-to-one name="person" class="Address" constrained="true" access="field" /&gt; </code></pre> <p>Does anyone see something wrong with this? How do I enable proxy/lazy loading for address?</p> <p>Thanks</p> http://stackoverflow.com/questions/1661333/emulate-gps-or-a-serial-device 5 Emulate GPS or a serial device. Jon Hadley 2009-11-02T13:26:29Z 2009-11-25T08:10:37Z <p>Is it possible to get location data out of <a href="http://gears.google.com/" rel="nofollow">Google Gears</a>, <a href="http://code.google.com/apis/gears/api%5Fgeolocation.html" rel="nofollow">Google Gelocation API</a> or any other web location API (such as <a href="http://fireeagle.yahoo.net/" rel="nofollow">Fire Eagle</a>) in such a format that it appears to other software as a GPS device?</p> <p>It occured to me reading <a href="http://superuser.com/questions/63966/wifi-direction-location-finding">these answers</a> to my question regarding WiFi location finding, on Super User, that if I could emulate a GPS unit, many of these web services could act as a 'poor-mans' GPS to otherwise less useful software that requires it.</p> <p>Is <a href="http://gpsd.berlios.de/" rel="nofollow">GPSD</a> an option?</p> <p>Preferably OSX &amp; Python, but I would be interested in any implementation.</p> http://stackoverflow.com/questions/1790595/determining-visible-area-from-globe-frustum 0 Determining visible area from globe frustum Jeff Storey 2009-11-24T14:55:21Z 2009-11-25T00:51:55Z <p>I'm working with a mapping application (worldwind) and trying to determine the minimum and maximum latitudes and longitudes that are currently displayed. I have access to the frustum, but I'm not sure how to account for the fact that the globe can have its heading and/or pitch changed. Any help on this problem would be appreciated.</p> <p>thanks,</p> <p>Jeff</p> http://stackoverflow.com/questions/1241026/hibernate-one-to-many-using-something-other-than-a-primary-key 0 Hibernate one to many using something other than a primary key Sergio Vera 2009-08-06T19:56:02Z 2009-11-24T22:32:00Z <p>I have a class A that has a set of B's. However, these two objects are linked by fields that are NOT the primary key.</p> <p>For B, I can use , but how do I specify that the join should be in A.secondary_column, Not A. table_primary_key_id ?</p> <pre><code>&lt;class table="a"&gt; &lt; id column="table_primary_key_id" &gt; &lt; /id&gt; &lt;property column="secondary_column" /&gt; &lt;set table="B" lazy="false" &gt; &lt;key column="B_not_primary" /&gt; &lt;one-to-many class="BClass" /&gt; &lt;/set&gt; &lt;/class&gt; </code></pre> http://stackoverflow.com/questions/1304758/complicated-nhibernate-component-mapping 0 Complicated NHibernate component mapping Meigetsu 2009-08-20T08:27:06Z 2009-11-22T11:00:03Z <p>EDIT: I simplified the problem to leave only what really bothers me.</p> <p>Hello all,</p> <p>I am trying to make the following mapping.</p> <p>In my database, I have a table called "ReportRowValue" containg the following columns:</p> <ul> <li>RowNumber </li> <li>ColumnNumber </li> <li><strike>StringValue </li> <li>LongValue </li> <li>DateValue</strike> </li> <li>Value</li> </ul> <p>In my code I want to get a more usable structure by creating <strike>several</strike> two classes from this one table. I guess this should be done using components <strike>and inheritance</strike> but I did not managed to create a working mapping file. What I want in code should look like this:</p> <p>ReportRow </p> <ul> <li>RowNumber </li> <li>Values (collection of ReportValue below) </li> </ul> <p>ReportValue <strike>(being an abstract class)</strike> </p> <ul> <li>ColumnNumber </li> <li>Value</li> </ul> <p><strike>ReportValueString / ReportValueLong / ReportValueDate (each one inheriting from ReportValue)</p> <ul> <li>Value (each one having a Value property of its one type)</strike></li> </ul> <p>And that's about all!</p> <p>Does anyone can point me how to create an nhibernate mapping file/files for doing that?</p> <p>Thanks,</p> <p>Meigetsu</p> http://stackoverflow.com/questions/1541413/british-national-grid-shapefile-convert-to-wgs84-lat-lon 0 British National Grid Shapefile - convert to WGS84 Lat/Lon Barry 2009-10-09T01:34:26Z 2009-11-21T15:00:41Z <p>I have a set of ESRI shapefiles which, I'm told, have been written using the British National Grid coordinate system. I need to convert these files to WGS84 lat/lons, for onward conversion to KML files. I'm having trouble doing this as follows:</p> <p>If I open each of the original files in MapInfo Professional telling it that my file has a projection which is British National Grid then I can't see any geographic objects in the file; the map window is completely empty.</p> <p>If I use MapInfo Professional's Universal Translator to convert the files to a WGS84 MapInfo TAB file then, just as before, the converted file won't display any geographic objects, the MapInfo window is empty.</p> <p>Can I verify the coordinate system of these files? Am I missing anything here? Should I be able to convert the shapefiles in the way I'm expecting to be able to and view them using MapInfo Professional? Will another tool do a better job for me?</p> <p>Thanks.</p> <p>More Info:</p> <p>My shapefile has coordinates which don't seem to translate to lat/lon properly and I'm now wondering if the coordinates aren't actually British National Grid. I'm seeing coordinates such as 383702523, 399081141 which appears to be approximately lat/lon 53.488182, -2.247153. Have you any idea what projection system my input file is in? </p> http://stackoverflow.com/questions/286294/object-to-object-mapper 5 Object to object mapper lomaxx 2008-11-13T04:58:19Z 2009-11-20T12:00:44Z <p>I've used plenty of <a href="http://en.wikipedia.org/wiki/Object-relational%5Fmapping" rel="nofollow">ORM</a> tools in the past, <a href="http://en.wikipedia.org/wiki/NHibernate" rel="nofollow">NHibernate</a>, <a href="http://nettiers.com/default.aspx?AspxAutoDetectCookieSupport=1" rel="nofollow">.netTiers</a>, <a href="http://en.wikipedia.org/wiki/LLBLGen" rel="nofollow">LLBLGen</a> and more and they always do a pretty good job of mapping data from a database to objects in code. </p> <p>What I'm looking for though is a framework or a pattern or something that will allow me to transform objects from one type to another.</p> <p>An example is I have a two web services, one has Investors another has Members. I want to convert an Investor object to a Member object by defining a set of rules that maps the Investor properties to the Member properties and back again.</p> <p>NHibernate mappings are the closest I can get to doing this, but it only seems to work for Database -> Object mappings. I was wondering if anyone knew of any products that allowed me to do obejct -> object mapping?</p> http://stackoverflow.com/questions/1765107/matrix-to-represent-a-triangle-in-screen-space 0 Matrix to Represent a Triangle in Screen Space Jon 2009-11-19T17:33:48Z 2009-11-19T18:40:37Z <p>Hi All,</p> <p>So i have a set of four points in 3D Space.</p> <p>P1 [0, 0, 0]<br> P2 [128, 0, 0]<br> P3 [0, 128, 0]<br> P4 [128, 128, 0]</p> <p>Which I'm then projecting orthographically to the screen effectively giving me two wireframe triangles in screen space.</p> <p>I now want to map a texture to this "plane" comprised of the two triangles. So i take my square texture, and using u,v coordinates I can map the texture into these two triangles.</p> <p>The problem comes when I try to add a z component to the verticies. The resulting triangles in screen space are now somewhat distorted but the texture mapping is completely off.</p> <p>It seems to me though that since it's just three points, they still form an affine rectangle of some sort and we can represent that rectangle as a matrix in the form:</p> <p>[a b 0] [c d 0] [tx ty 1]</p> <p>Can anyone give me some tips, ideas about how to convert three 2D points in screen space into a matrix in the above form?</p> <p>All the tutorials etc that I've looked up explain a loose theory of texture mapping, and then let OpenGl/DirectX native functions do the actual mapping.</p> <p>I'm looking for more of a direct approach where given three points, i can map a texure to that triangle using an affine matrix. (Not doing a scanline rendering approach)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1764836/using-linq-to-sql-with-multiple-databse-tables 0 Using LINQ To SQL with multiple databse tables Kumar 2009-11-19T16:58:18Z 2009-11-19T17:41:00Z <p>I have an employee class with as follows:</p> <pre><code> public class Employee { public string FirstName { get; set; } public string LastName { get; set; } public string UserName { get; set; } public string Password { get; set; } } </code></pre> <p>The properties FirstName and LastName are stored in Employee table in Database1. UserName and Password are stored in User table in Database2. How can i map this class to these databases and what is the best practice to handle CURD operations in such scenarios?</p> http://stackoverflow.com/questions/1760050/nhibernate-poco-basics 3 NHibernate POCO / Basics 6footunder 2009-11-19T00:09:52Z 2009-11-19T00:34:04Z <p>I've formerly used L2S and am looking at using NHib along with the Sharp Architecture on a project. I've started prototyping and come up against the first issue which i have no idea how to google for.</p> <p>Given a POCO with some simple properties, and one reference property (Category - class not shown here):</p> <pre><code>public class Post { public Post() { this.DateCreated = DateTime.Now; } public virtual string Title {get;set;} public virtual DateCreated {get;set;} public virtual Category {get;set;} } </code></pre> <p>This is handy if i want to say produce a summary of posts in tabular format - if i want a column named "Category" and i want to show the category title i can simply use Post.Category.Title.</p> <p>However a user creates a new post (they select a category from a drop down list or similar). They click submit, and i new up a Post object. However before i can persist the new Post, i have to retrieve an instance of the Category (by id) to assign to the Category property?</p> <p>How to get the best of both worlds? If i update the Post POCO, making the Category an int, I've made it simpler to create new instances. But harder for some rendering code which will now have to resolve the category name given the Id?</p> <p>I feel i'm missing some basic concept here? </p> <p>I know with Linq to Sql given a schema where the Post table had an integer foriegn key column named CategoryId, would generate me both the underlying table column (CategoryId) and and EntitySet which contained the foreign key row. </p> <p>How to acheive similar in NHibernate? How is this generally managed?</p> <p>Thanks</p> http://stackoverflow.com/questions/1606660/dynamic-mapping-in-hibernate 1 Dynamic mapping in hibernate? sayan 2009-10-22T11:44:49Z 2009-11-18T19:14:11Z <p>Actually I am looking for something like this:</p> <p>u alter the table in db (say u increase one column); it should be reflected in the front end wihtout hardcoding the mapping file...</p> <p>thanks for help..</p> http://stackoverflow.com/questions/1320966/nhibernate-mapping-list-doesnt-update-list-indexes 1 Nhibernate - Mapping List doesn't update List indexes Thomas Lundström 2009-08-24T07:45:36Z 2009-11-18T19:07:50Z <p>Hi,</p> <p>I'm having one self-referencing class. A child has a reference to its parent and a parent has a list of children. Since the list of children is ordered, I'm trying to map the relation using NHibernate's .</p> <p>This is my mapping:</p> <pre><code>&lt;class name="MyClass"&gt; &lt;id name="Id"&gt; &lt;generator class="native"/&gt; &lt;/id&gt; &lt;list name="Children" cascade="delete" inverse="true"&gt; &lt;key column="ParentId"/&gt; &lt;index column="ListOrder"/&gt; &lt;one-to-many class="MyClass"/&gt; &lt;/list&gt; &lt;many-to-one name="Parent" class="MyClass" column="ParentId"/&gt; &lt;/class&gt; </code></pre> <p>The problem I'm having is when having a bi-directional mapping child&lt;->parent, the list index (ListOrder) isn't updated in the database when I do my CRUD dance. This means that when I e.g. remove a child, I get holes in the children list after saving to the database and fetching the parent again. If I remove the bidirectionality, by not having a many-to-one from the children to the parent (and no inverse=true), the ListOrder is updated correctly.</p> <p>Have any of you seen this before? Is there any simple solution?</p> http://stackoverflow.com/questions/679588/how-can-i-make-a-bitmap-from-mapxtreme-styles 1 How can I make a Bitmap from MapXtreme Styles Gabe 2009-03-24T22:58:00Z 2009-11-18T13:26:01Z <p>I have posted this question on The MapXtreme forum but since nobody ever answers questions there I am hoping someone here has some experience with this product (mapxtreme is a GIS SDK made by the people who make MapInfo)</p> <p>I am working on a MapXtreme Desktop app and we need bitmaps of our features styles </p> <p>I have tried two ways but all I get is a grey bitmap with a dark X. </p> <p>here is the code I have used both ways are in the code but one is commented out: </p> <pre><code> public static Bitmap GetStyleBitmap(Style style) { var bm = new Bitmap(16, 16, System.Drawing.Imaging.PixelFormat.Format32bppArgb); var rect = new System.Drawing.Rectangle(0, 0, 16, 16); var ss = new StyleSample(); ss.Bounds = rect; if (style is CompositeStyle) { ss.ApplyAreaStyle(((CompositeStyle)style).AreaStyle); ss.ApplyLineStyle(((CompositeStyle)style).LineStyle); } if (style is AreaStyle) { ss.ApplyAreaStyle((AreaStyle)style); } if (style is SimpleLineStyle) { ss.ApplyLineStyle((SimpleLineStyle)style); } //using MapExport var me = new MapExport(ss.Map); var image = me.Export(); return new Bitmap(image); //using StyleSample.DrawToBitmap //ss.DrawToBitmap(bm, rect); //return bm; } </code></pre> <p>TIA</p>