Tagged Questions

4
votes
3answers
162 views
+150

What is the best practice when the database schema changes in entity framework?

I am using Entity Framework to do the ORM in .NET project. The problem I am facing is that when the database schema changes, there is no proper mechanism to update the edmx file. For example, If …
11
votes
7answers
354 views
+150

What are people using JScript.Net for?

I'm interested to know who uses JScript.Net and for what sort of applications. Whenever I'm reading MSDN .Net documentation, I always notice the JScript samples but in all the years I've been a C# dev …
12
votes
3answers
276 views
+150

ClickOnce app does not start through Process.Start(”x.abc”) with *.abc associated to ClickOnce app

I have successfully developed and deployed a ClickOnce application which registers an associated file extension, for instance *.abc. When I click on a file named x.abc or if I type x.abc from the …
0
votes
0answers
40 views
+100

Specify client certificates in HttpWebRequest in .NET Compact Framework 3.5

Previously, I was trying to use client certificate on .NET CF 2.0 (see here) and I ultimately had to give up. I'm now on .NET CF 3.5 which has support for the ClientCertificates property on the …
9
votes
11answers
364 views
+350

Why are circular dependencies considered harmful?

Why is it a bad design for an object to refer to another object that refers back to the first one?
1
vote
4answers
96 views
+100

How can a Windows service be installed with visual basic.net express edition?

EDIT: I'm starting a bounty on this question. For the moment, I've moved on and am developing my application using VS2010 Pro Beta, but I'd really like it to be able to be built with express …
0
votes
2answers
46 views
+200

Scraping a Facebook App for Data

I'm using a Facebook application that has a rich set of information that I'd like to get at offline. To do this, I essentially need to read the infromation from the web pages into my own database. …