0
votes
0answers
15 views
How to blank out a field in an MVC app using LINQ
I've got an MVC app that gives the user textarea's to update some description fields. It's strongly-typed to a table object, and the fields are wrapped in a form with a Submit button.
Occaisionally …
1
vote
1answer
10 views
Executing LINQ-to-SQL Debug Output?
When you log LINQ-to-SQL's query output via the "Log" property on the DataContext object, you get output similar to:
SELECT [t0].[fullaname], [t0].[Worker], [t0].[Office]
FROM [dbo].[Workers] AS [t0]
…
0
votes
2answers
30 views
Linq 2 SQL One to Zero or One relationship possible?
Is it possible to create a one to zero or one relationship in Linq2SQL?
My understanding is that to create a one to one relationship you create a FK relationship on the PK of each table.
But you …
0
votes
0answers
13 views
LINQ to SQL query to find duplicate rows in related tables
I have three related tables: Location (Id), Document (Id,LocationId) and Version (Id,DocumentId,Identifier)
Version' Identifier may duplicate inside Location but I want to get a list of Versions with …
1
vote
1answer
31 views
Why would Entity Framework not be able to use ToString() in a LINQ statement?
This works in LINQ-to-SQL:
var customersTest = from c in db.Customers
select new
{
Id = c.Id,
Addresses = from a in …
0
votes
1answer
30 views
Can NHibernate, Subsonic or L2S do Per-Entity Auto-Increment?
I have a SQL Server 2008 database with a composite key: ProjectID (GUID) and TaskID (int). ProjectID is a foreign key to a Projects table. I want to have TaskID Auto-Increment, but restart for every …
2
votes
1answer
39 views
Get table-data from table-name in LINQ DataContext
I need to get table-data from table-name for my Linq DataContext.
Instead of this
var results = db.Authors;
I need to do something like this.
string tableName = "Authors";
var results = …
1
vote
3answers
32 views
Conditional where with or criteria linqtosql
Howdy,
I've figured out how to do conditional queries with linq to sql and I've also figured out how to OR where clauses. Unfortunately I can't figure out how to do both at once. I can do a …
1
vote
3answers
46 views
Is it possible to select data while a transaction is occuring?
I am using transactionscope to ensure that data is being read to the database correctly. However, I may have a need to select some data (from another page) while the transaction is running. Would it …
1
vote
4answers
51 views
LINQ to SQL with too many records for memory
A lot of the LINQ to SQL that I've been doing involves reading data from a table and then calling the ToList() extension method and using the data in memory. However, I now want to use LINQ to SQL to …
0
votes
4answers
39 views
How can I access an object property set within an initializer?
I don't know if this is even possible, but how can I access an object property that has be set within an initializer so that I can use it to set another property within the same initializer?
Here's …
1
vote
3answers
53 views
When can I dispose of my DataContext?
Take the following example:
MyDataContext context = new MyDataContext(); // DB connection established.
MyTableRecord myEntity = myDataContext.Table.FindEntity(12345); // retrieve entity
Say my …
1
vote
2answers
16 views
Linq to Sql Mapping
When I modify the structure of the table in Sql Server ,won't it be automatically reflected in the "Dbml" Layout designer ?Each and every time i have to delete the tables in "dbml' layout designer and …
0
votes
0answers
9 views
OneToOne relation (cardinality) in LINQ to SQL with SQLMetal
Is there any possibility to set OneToOne relation (cardinality) when generate dbml with SQLMetal? By default dbml schema generated with the OneToMany relation.
1
vote
0answers
40 views
How to best map database-aware entity types between application layers
I have an ASP.NET MVC app with a primitive repository layer that currently serves LINQ to SQL entities back to the controllers which then send them to the views. I now want to start using some …
