Search Results

2
votes
1answer
1k views

How do you cast an IEnumerable<t> or IQueryable<t> to an EntitySet<t> ?

In this situation I am trying to perform a data import from an XML file to a database using LINQ to XML and LINQ to SQL. Here's my LINQ data model: public struct Page { …
0
votes

ASP.NET Custom Controls - Composites

You might be able to make use of this technique to make design-time easier: …
1
vote

What is the difference between the <%# and <%= opening tags?

<%= is shorthand for Response.Write(). <%# indicates that you're working with the data container in a data bound control. …
0
votes

GetModifiedMembers returns empty array

I know this isn't an answer but I haven't been able to replicate your issue. Using the following code in a console application I get an array of length 1: testdbData …
2
votes

Setting WPF image source in code

Have you tried: Assembly asm = Assembly.GetExecutingAssembly(); Stream iconStream = asm.GetManifestResourceStream("SomeImage.png"); BitmapImage bitmap = new BitmapImage(); bitmap.Be …