Tagged Questions

1
vote
1answer
129 views

Hibernate default joining for nullable many-to-one

Hi all, I have a hibernate mapping like this in a ProductDfn class @ManyToOne( fetch = FetchType.LAZY, optional = true ) @JoinColumn( name = "productTypeFk", nullable = true ) public ProductType …
1
vote
1answer
104 views

Good object structure for results of my Hibernate left outer join

I need to make an outer join query that retrieves all of the definitions and any properties they have associated with them that are associated with a certain company. I have two Hibernate models …
0
votes
0answers
134 views

How to implement outer join expression tree?

I need to implement the query using expressions syntax (because I don't know types in compile time). For example query like this one: from customer in Customers join purchase in Purchases on …
0
votes
1answer
98 views

How to get Words length and height, when drawing the images on a canvas in GDI+

I draw a string on a canvas, using GDI+ in C++. Is there any API to get the out layer (width, height ) of a string in a certain font? Thanks very much! Many thanks to Windows programmer's solution. I …
6
votes
7answers
6k views

Linq to Entity with multiple left outer joins

Hi, I am trying to understand left outer joins in LINQ to Entity. For example I have the following 3 tables: Company, CompanyProduct, Product The CompanyProduct is linked to its two parent tables, …