Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
5k views

Using MySql with Entity Framework 4 and the Code-First Development CTP

I thought I'd experiment a bit with Scott Guthrie's latest post on code-first dev with Entity Framework 4. Instead of using Sql Server, I'm trying to use MySql. Here are the relevant parts of my ...
1
vote
2answers
68 views

async Programming Issues

I've recently discovered the CTP Async Library and I wanted to try to write a toy program to get familiar with the new concepts, however I'm running into an issue. I believe the code should write out ...
1
vote
2answers
687 views

Code First Entity Framework 4 : Failing with SQL Authentication

I'm working with Entity Framework 4 and CTP 4 and am really liking it so far. I can get it working correctly when I'm using Windows Authentication to connect to the database but when I switch to SQL ...
1
vote
1answer
2k views

What is the new name of Microsoft.Data.Entity.Ctp?

I'm playing around with Entity Framework 4 and code only. The tutorial I'm following is using the Beta-Version of Visual Studio 2010 and is referring to Microsoft.Data.Entity.Ctp. Since I'm working ...
0
votes
0answers
26 views

CTP implementation EasyCollection ,base mote can't fire receive function

I come up with a problem about the CTP implementation EasyCollection. after downloading the program to Telosb ,I find that the base mote (which TOS_NODE_ID = 1) doesn't fire the receive fuction ,don't ...
0
votes
0answers
39 views

WPF control directly inside Excel CTP

Currently I have a WinForm user control in the Excel CTP, which in turn hosts a WPF user control via an element host. Things are working well except for performance issues. My question is - is it ...
0
votes
0answers
233 views

CakePHP Full Calendar plugin won't display the calendar [closed]

I have installed the cakephp full calendar plugin and it works fine without a default layout. But when I want to add it in my layout only the hyperlinks of the calendar are displayed. This is the ...
0
votes
0answers
937 views

Entity Framework CTP4 Mapping Error

I was messing around with CTP4 trying to get a feel of how mapping works and i've got this error that i can't figure out. {"A dependent property in a ReferentialConstraint is mapped to a ...
0
votes
1answer
865 views

Code First Entity Configuration ToTable Problem

If I specify ToTable in the OnModelCreating override like so: protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Team>() .MapSingleType() ...