I tried to use ado.net migrations and when type add-migration in nu-get console i sometimes(in 50% of cases) cause visual studio in stuck and get the mesageMicrosoft visual studio is busy.
I need to implement a back-office layer for an application. It will have to implement the data access through EF4, and expose the data access as CRUD through WCF services. The using of WCF Data Servic
I have a开发者_JS百科 very simple query on a 400 records database, however, if I do that query in a multi-threaded environment, it times out instantly, if I query it one by one, it works fine.
I have an entity in Entity Framework 4 called Topic. Topic开发者_如何学Go has a navigation property to a collection of Reply entities.
I am stuck in somewhere on my ASP.NET MVC 3 app. here is the error I am getting : The specified type member \'AccommPropertyTags\' is not supported in
I have a person table filled with Person information. I would like to get a list of the personer inside the table and check if they have renewed thier password in last 24 hours, and then return a pers
I have a C# .net 3.5 application using an ADO.NET Entity D开发者_JAVA技巧ata Model. I am loading the contents for a given database entry from an XML file.
How can I fake an ObjectContext when unit testing?I have created my generic repository that excepts an ObjectContext, faked the ObjectSets, but I can\'t figure out how to create and pass a fake Object
I have WCF Data service on top of EF (old-fashioned edmx; not code-first) that has millions of rows of data. I am restricting result set to 500 rows. So far, so good!
My code is as below. public void CreateNewAuthor(List<Author> ne开发者_Python百科wAuthor) { publishContext.AddToAuthors(newAuthor);