2
votes
1answer
45 views
Considerations for implementing LINQ to SQL or Entity Framework now, intending to use NHibernate later
I've got a deadline for an initial release of a client-server application that will have lots of iterative releases subsequently.
NHibernate is the ORM of choice, largely by reputation and my desire …
1
vote
1answer
30 views
LINQ2SQL, Persistence Ignorance and Domain Models
Has anyone here have used LINQ to SQL to support the persistence of domain
models?
I'm not planning to use the LINQ2SQL entity designer, just plain-old hand-coded XML mapping and I'm currently having …
3
votes
3answers
52 views
Linq to sql, copy original entity to new one and save.
Hi !
i have a situation when i cant just update original record in database, but instead make a new record, copy all fields from old and apply changes to new one.
(something like this if translated …
6
votes
3answers
98 views
Error, method not supported by LINQ to Entities
Why I am getting this error:
The method 'Single' is not supported by LINQ to Entities. Consider using the method 'First' instead.
public ActionResult Details(int id)
Line 27: { …
1
vote
1answer
25 views
How to create breadcrumbs using Dynamic Data/LINQTOSQL framework?
Hello,
I need some EXAMPLES or IDEAS on how to created dynamic breadcrumb control which will dynamically generated breadcrumbs for Dynamic Date framework powered by LINQTOSQL
2
votes
3answers
28 views
LinqToSql how to implement calculated columns
I want to have a field in my entity where the returned data comes from a class function in mydomainservice and not from the database.
The reason is that I want to generate an image URL (Silverlight …
0
votes
2answers
33 views
Why is dbml generating extra classes
i am having a small problem here.
The table which dbml (LinqToSql designer) is using has columns (Foreign keys), for which it generates two objectsfor the coressponding Blogs table (1:1 association) …
2
votes
2answers
56 views
LinqToSQL Error : Operation is not valid due to the current state of the object
Hi guys,
during an update command I was received the following error:
Operation is not valid due to the current state of the object
I had tried to remove one column from the update command and it …
0
votes
2answers
41 views
I can’t see the extension methods of LINQ to SQL in Class Library [closed]
Hi Everyone,
I created a Class Library named Repository and which includes LINQ To SQL file which stores a ORM of SQL Server Database, besides that I also created another Class Library named Services …
