Here is the Code
var q = from c in customers
join o in orders on c.Key equals o.Key into g
from o in g.DefaultIfEmpty()
select new {Name = c.Name, OrderNumber = o == null ? "(no orders)" : o.OrderNumber};Archiv für Oktober 2010Left Outer Join LinqToSqlFreitag, 22. Oktober 2010Here is the Code var q = from c in customers
join o in orders on c.Key equals o.Key into g
from o in g.DefaultIfEmpty()
select new {Name = c.Name, OrderNumber = o == null ? "(no orders)" : o.OrderNumber};Set onunload with jQueryFreitag, 15. Oktober 2010When using Google maps it’s important to use GUnload on the page’s unload event. Fine when you can access the body tag directly…. But if you have the Google map functionality wrapped inside an ascx you need a different approach. After a big of digging I found how to use jQuery to “catch” the unload event. In case anyone else needs it: $(window).unload( function () { GUnload(); } );XBox 360 Error CodesMittwoch, 13. Oktober 2010Hier findet ihr alle Fehlercodes der Xbox 360 http://www.bdegen.de/xbox-360-error-codes Itextsharp include Font in itextMittwoch, 6. Oktober 2010itext vers.5.0.4 With this code you will add a font to itext. You can use it with the Stylesheet. FontFactory.Register("c:/windows/fonts/Calibri.ttf");See also Stylesheet in itext Itextsharp Stylesheet in htmlMittwoch, 6. Oktober 2010Itext vers.5.0.4 StyleSheet style = new StyleSheet();
style.LoadStyle("text", "face", "Calibri"); // Font-family Calibri
style.LoadStyle("text", "size", "11pt"); // Font-site 11pt - don`t use px
style.LoadStyle("text","leading", "15.5"); //leading adjusts the
space between the lines in this case it makes the image hide part of thenote
style.LoadStyle("subtitle", "color", "#686B75"); // Gray
style.LoadStyle("text", "align", "justify");// Justify - css text-alignSee also Itext Merge PDF |