Tagged Questions
3
votes
2answers
286 views
How to data bind Entity Framework objects to a FormView
I am data binding to many FormView controls using EF entity instances, but I have to resort to this ridiculous kludge in order to achieve what I want without using EntityDataSource controls:
...
2
votes
2answers
52 views
Delete a record entity framework
I am receiving an exception:
Unable to update the EntitySet 'Session' because it has a DefiningQuery and no
element exists in the element to
support the current operation.
while trying to ...
2
votes
5answers
3k views
Entity Framework v2 doesn't support sql 2000?
I installed the beta 2 of Visual Studio 2010 today. I went to test out the new entity framework stuff (to see if my "issues" from v1 were fixed.).
I started adding a new connection string, but when ...
1
vote
2answers
503 views
Entity Framework Code First + MySQL… NullReferenceException
I need to work with data in a couple of tables in an off site MySQL database we have limited access to and decided to use it as an opportunity to pick up some EFCF experience. No matter what I do i ...
0
votes
2answers
70 views
Entity framework - remove related records by id
Okay. assume I have structure:
School -> students -> StudentParents <- parents -> address
School can have many students, students can be relatives and have the same set of parents ...
0
votes
3answers
589 views
Parse string to poco class enum in linq query MVC 2.0
I have the following enum and POCO class
public enum Gender
{
Male,
Female,
Unknown
}
public class Person
{
public int PersonId { get; set; }
public string LastName { get; set; }
...