0
votes
1answer
21 views
Matrix to Represent a Triangle in Screen Space
Hi All,
So i have a set of four points in 3D Space.
P1 [0, 0, 0]
P2 [128, 0, 0]
P3 [0, 128, 0]
P4 [128, 128, 0]
Which I'm then projecting orthographically to the screen …
3
votes
2answers
50 views
NHibernate POCO / Basics
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 ide …
0
votes
1answer
28 views
Using LINQ To SQL with multiple databse tables
I have an employee class with as follows:
public class Employee
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string UserNa …
1
vote
1answer
24 views
Subsonic map POCO to table of a different name
I started a small project and wanted to use Subsonic's SimpleRepository for my database layer. If I have table in my database called Member and I want to create a POCO called T …
0
votes
1answer
15 views
Linq DBML Mapping a Table With A Primary Key That Spans 2 Columns
I have three tables: Login, LoginRoles and Roles. Login joins to LoginRoles and LoginRoles joins to Roles. LoginRoles is a many-to-many table, and I want to constrain the column …
1
vote
1answer
26 views
Fluent NHibernate, varbinary(max) and SQLite
Hi,
I have a varbinary field in my sql server database that needs to be varbinary(max). I create my database with NHibernate and I use Fluent Nhibernate for my mappings.
I also u …
0
votes
2answers
33 views
Shell aliasing multiple arguments
Is there a good way to do multiple substitutions for aliasing a command?
For example
alias cmd = 'ssh -R $1:$2:$1:$2 $3 | something {$1, $2, $3}'
cmd 127.0.0.1 1234 server
Some …
0
votes
1answer
29 views
Hibernate does not generate identifier when using Oracle sequence
I have the following mapping
@Entity
@SequenceGenerator(name="sacpSequenceGenerator", sequenceName="SACP_SEQ")
public class Sacp {
private Integer id;
@Id
@Generate …
5
votes
4answers
139 views
Emulate GPS or a serial device.
Is it possible to get location data out of Google Gears, Google Gelocation API or any other web location API (such as Fire Eagle) in such a format that it appears to other software …
0
votes
2answers
27 views
nhibernate problem on identity column
error:
could not insert: [NHibernateExperiment.Domain.Customer][SQL: INSERT INTO Customer (FirstName, LastName, Address) VALUES (?, ?, ?); select SCOPE_IDENTITY()]
Mapping:
& …
0
votes
4answers
63 views
Javascript redirect
I am working with javascript and here is what I am trying to do:
1. Send a get request which looks like "http://localhost:8080/myapp/verify.htm?verifyId=Agkvhs"
My requests reache …
1
vote
4answers
49 views
Is anyone using a ColdFusion framework that has specific path requirements without mapping or locating resources in the server root?
Let me first say I am aware of this faq for Mach-II, which discusses using application specific mappings as a third option when:
locating the framework in the server root is not …
0
votes
0answers
28 views
NHibernate IDictionary mapping with link table
I am a newbie to NHibernate and trying to create a XML mapping for this scenario:
public class Catalog
{
public virtual Guid ID { get; set; }
public virtual string Name { …
0
votes
3answers
86 views
Using AutoMapper (by Jimmy Bogard) with NHibernate
I'm trying to use AutoMapper to map from DTO's to my Domain.
My DTO's might look like this:
public class MyDTO
{
public string Name { get; set; }
public bool OtherPropert …
0
votes
2answers
99 views
Automapper (c#) - Using the instance version of CreateMap and Map with a WCF service???
Hi there,
Been having some real issues with automapper, i think i have found the solution but unsure of how to implement it..
basically i am using a custom mapping with ResolveUs …
