active questions tagged linq-to-sql - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T05:49:05Z http://stackoverflow.com/feeds/tag/linq-to-sql http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1925320/problem-when-accessing-another-page-while-first-page-is-processing-a-file 0 Problem when accessing another page while first page is processing a file Andrew 2009-12-17T23:29:18Z 2009-12-18T04:43:58Z <p>I have a web app which processes files and writes the data to a database. This process can take up to 2 minutes. Let's say this is done on ProcessFile.aspx. I wanted to ensure data integrity so I wrapped all the database processing in a TransactionScope.</p> <p>The problem occurs when I am processing a file and then try to access another page which also accesses the database (just reads some data via a select statement). I'm pretty sure it doesn't have to do with any kind of database locking as when I go directly through SQL Server Management Studio, I have no trouble selecting on a table.</p> <p>I am using LinqToSQL. I have a ScriptManager on the master page. All pages inherit from this master page. ProcessFile.aspx has an UpdatePanel but the other page does not.</p> <p>What am I missing here? If more info is needed, comment and I'll update the question.</p> <p><strong>EDIT 1:</strong> I get this exception message</p> <pre><code>Type : System.Data.SqlClient.SqlException, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Message : Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. Source : .Net SqlClient Data Provider </code></pre> <p>I open the second page in a separate browser window. It simply keeps loading UNTIL the first page has finished processing the file and then loads normally.</p> <p>I'm not making a call from one page to another. Simply opening another page through another browser window via the address bar.</p> <p><strong>EDIT 2:</strong> This is the first time that I've come across where more than one answer solved my problem. Both Remus's and Rick's answers in conjunction solved it for me. I didn't know who to choose as the correct answer so I flipped a coin and Rick won. Sorry, Remus! I didn't want to give it to nobody. However, I needed to implement BOTH answers for it to work.</p> http://stackoverflow.com/questions/1922898/how-to-blank-out-a-field-in-an-mvc-app-using-tinymce 0 How to blank out a field in an MVC app using TinyMCE gfrizzle 2009-12-17T16:22:16Z 2009-12-18T04:36:34Z <p>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.</p> <p>Occaisionally they don't want any data in a field, but when they delete the text and try to save, the blanked-out field comes back with its original text (i.e. the table object passed to the Save action contains other edits, but attempts to blank out fields result in the original text staying in the field).</p> <p>I'm assuming this is LINQ trying to determine which fields have been edited, but how do you tell it that it's blank on purpose?</p> <p><strong>UPDATE:</strong> It appears this may be a problem with the TinyMCE jQuery plugin. It adds rich-text functionality to textarea controls. If I turn it off, I can remove text with no problems.</p> http://stackoverflow.com/questions/877856/groupjoin-vs-where-to-filter-out-null-related-items 0 GroupJoin vs. Where to filter out null related items Daniel 2009-05-18T13:53:22Z 2009-12-18T02:00:05Z <p>Is there any advantage in using either of these to retrieve elements from TableA that don't have a related element in TableB?</p> <pre><code>TableA .GroupJoin( TableB, o =&gt; o.TableAID, i =&gt; i.TableAID, (o,i) =&gt; new {o, child = i.DefaultIfEmpty()}) .Where(x =&gt; x.child.Where(c =&gt; c != null).Count() == 0) .Select(x =&gt; x.o); </code></pre> <p>or</p> <pre><code>TableA .Where(a =&gt; !TableB.Select(b =&gt; b.TableAID).Contains(a.TableAID)); </code></pre> <p>I'm used to doing this with a left outer join in SQL, which the first example kind of uses. The second example uses a "NOT IN" type of approach, which is not something I've used for this before.</p> <p>Both ways return the same data. The second one would be my preferred one from simplicity view. Does the first one have any advantages?</p> <p>Do you have another way of doing this?</p> http://stackoverflow.com/questions/1925200/linq-to-sql-entityset-binding-the-mvvm-way 0 Linq to SQL EntitySet Binding the MVVM way Savvas Sopiadis 2009-12-17T23:02:38Z 2009-12-17T23:16:36Z <p>Hi everybody!</p> <p>In a WPF application i'm using LINQ to SQL classes (created by SQL Metal, thus implementing POCOs).</p> <p>Let's assume i have a table User and a Table Pictures. These pictures are actually created from one picture, the difference between them may be the size, coloring,... </p> <p>So every user may has more than one Pictures, so the association is 1:N (User:Pictures).</p> <p><strong>My problems</strong>: </p> <p><strong>a)</strong> how do i bind, in a MVVM manner, a picture control to one picture (i will take one specific picture) in the EntitySet, to show it up?</p> <p><strong>b)</strong> everytime a user changes her picture the whole EntitySet should be thrown away and the newly created Picture(s) should be a added. Is this the correct way?</p> <p>e.g. </p> <pre><code>//create the 1st piture object UserPicture1 = new UserPicture(); UserPicture1.Description = "... some description.. "; USerPicture1.Image = imgBytes; //array of bytes //create the 2nd piture object UserPicture2 = new UserPicture(); UserPicture2.Description = "... another description.. "; UserPicture2.Image = DoSomethingWithPreviousImg(imgBytes); //array of bytes //Assuming that the entityset is called Pictures //add these pictures to the corresponding user User.Pictures.Add(UserPicture1); User.Pictures.Add(UserPicture2); //save changes datacontext.Save() </code></pre> <p>Thanks in advance</p> http://stackoverflow.com/questions/1925163/eager-loading-prefetching-many-to-many-without-loadoptions-linq-to-sql 0 Eager loading / prefetching many-to-many without LoadOptions - Linq to Sql Charlino 2009-12-17T22:53:47Z 2009-12-17T23:07:41Z <p>I've got a situation where I need to prefetch some entities through a many-to-many relationship. So it's like the classic <code>BlogPost &lt;- BlogPostTag -&gt; Tag</code> situation.</p> <p>Yes, I'm aware of LoadOptions but I can't use it because it's a web application and I'm using the one datacontext per request pattern.</p> <p>It also seems you can't use projection to prefetch many-to-many relationships. Yes? No?</p> <p>I want to return <code>IQueryable&lt;Tag&gt;</code> based on a set of Blogs. The best I can do is get it to return IQueryable> by doing the following:</p> <pre><code>public IQueryable&lt;Tag&gt; GetJobsCategories(IQueryable&lt;BlogPost&gt; blogPosts) { var jobCats = from bp in blogPosts select bp.BlogPostTags.Select(x =&gt; x.Tag); return jobCats; } </code></pre> <p>Can I flatten that? Am I missing something obvious? Is there another approach I can take?</p> <p>And no, I can't change ORMs ;-)</p> http://stackoverflow.com/questions/1925011/linq-to-sql-how-should-i-manage-database-requests 1 Linq to SQL - How should I manage database requests? James 2009-12-17T22:21:31Z 2009-12-17T23:05:32Z <p>I have studied a bit into the lifespan of the DataContext trying to work out what is the best possible way of doing things.</p> <p>Given I want to re-use my DAL in a web application I decided to go with the <b>DataContext Per Business Object Request</b> approach.</p> <p>My idea was to extend my L2S entities from the dbml file to retrieve information the database creating a separate context per request e.g.</p> <pre><code>public partial class AnEntity { public IEnumerable&lt;RelatedEntity&gt; GetRelatedEntities() { using (var dc = new MyDataContext()) { return dc.RelatedEntities.Where(r =&gt; r.EntityID == this.ID); } } } </code></pre> <p>In terms of returning the Entities...do I need to return POCOs at this point or is it ok to simply return the business object returned from the query? I understand that if I was to try access properties of the returned entity (after the DataContext has been disposed) it would fail. However, this is the reason I have decided to implement these type of methods e.g.</p> <p>Instead of:</p> <pre><code>AnEntity entity = null; using (var repo = new EntityRepo()) { entity = repo.GetEntity(12345); } var related = entity.RelatedEntities; // this would cause an exception </code></pre> <p>In theory I should be able to do:</p> <pre><code>AnEntity entity = null; using (var repo = new EntityRepo()) { entity = repo.GetEntity(12345); } var related = entity.GetRelatedEntities(); </code></pre> <p>Given the circumstances of my particular app (needs to work in a windows service &amp; web application) I would like to know if this seems a plausible approach, whether there are obvious flaws and if there are better approaches for what it is I am trying to do.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1919632/get-table-data-from-table-name-in-linq-datacontext 2 Get table-data from table-name in LINQ DataContext Krunal 2009-12-17T05:21:06Z 2009-12-17T22:13:02Z <p>I need to get table-data from table-name for my Linq DataContext.</p> <p>Instead of this</p> <pre><code>var results = db.Authors; </code></pre> <p>I need to do something like this.</p> <pre><code>string tableName = "Authors"; var results = db[tableName]; </code></pre> <p>It could be any table-name that is available in DataContext.</p> http://stackoverflow.com/questions/1924437/get-more-returns-of-a-stored-procedure-linq-to-sql -1 Get more returns of a Stored Procedure (Linq to SQL) Renato Bezerra 2009-12-17T20:41:38Z 2009-12-17T21:00:04Z <p>Hi everybody. I have a question. Please it´s extremely urgent !!</p> <p>I created a Store Procedure to make tests for study its functionality.</p> <p>my procedure execute two selects:</p> <p>Example: Select TOP 20 * From NotaFiscal Select TOP 20 * From ProdutoNotaFiscal</p> <p>Using the ADO.NET, the Dataset is filled with 2 results and generates 2 DataTables. Using Linq to SQL the type of return is a ISingleResult</p> <p>I need to get the 2 returns of my procedure, but I'm not able to do that.</p> <p>Somebody knows how can I get the result of 2 selects from procedure to LINQ ?</p> <p>Regards</p> http://stackoverflow.com/questions/468045/error-sqldatetime-overflow-must-be-between-1-1-1753-120000-am-and-12-31-9999 2 Error - SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. vondiplo 2009-01-22T04:29:26Z 2009-12-17T18:17:38Z <p>Hello all,</p> <p>I've been using this piece of code I've written and it's working in this most unclear manner. I wish to insert a row into the database which includes two columns of DateTime: myrow.ApprovalDate = DateTime.Now myrow.ProposedDate = DateTime.Now</p> <p>And yet, when I update the database I recieve this error: SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. </p> <p>I've even tried copying an inserted value from the database and hard code it into the object being updated: myrow.ApprovalDate = Convert.ToDateTime("2008-12-24 00:00:00.000"); [I copied this value from the DB]</p> <p>Still same error, the strange part is that the above trick worked for the first insert to the DB but failed from there on. Any ideas what's going on?</p> <p>Thanks,</p> <p>Vondiplo</p> http://stackoverflow.com/questions/1922590/executing-linq-to-sql-debug-output 1 Executing LINQ-to-SQL Debug Output? Sam Schutte 2009-12-17T15:39:18Z 2009-12-17T15:47:41Z <p>When you log LINQ-to-SQL's query output via the "Log" property on the DataContext object, you get output similar to:</p> <pre><code>SELECT [t0].[fullaname], [t0].[Worker], [t0].[Office] FROM [dbo].[Workers] AS [t0] WHERE [t0].[OfficeID] = @p0 ORDER BY [t0].[Name] -- @p0: Input Int (Size = 0; Prec = 0; Scale = 0) [412] -- Context: SqlProvider(Sql2005) Model: AttributedMetaModel Build: 3.5.30729.1 </code></pre> <p>In this example, I'm just pulling back some information about every "Worker" in the Office with ID = 412. However, this output does not execute directly in a SQL Management Studio Query window, because of the "@p0" commented format that LINQ outputs.</p> <p>Does anyone know if there is a stored procedure that takes this format so I can execute it? I looked at the paramaterized query procs, but maybe I'm just not seeing it. If there's no procedure, I'm about to write a parser that will turn this format into "normal" SQL...</p> <p>Thanks!</p> <p>Note:</p> <p>I know I could just Define @p0 at the top of this, as shown in <a href="http://stackoverflow.com/questions/1705939/help-with-sql-linq-debugging">http://stackoverflow.com/questions/1705939/help-with-sql-linq-debugging</a>, but - a lot of these queries I have take like 20 parameters, so it becomes a lot of work copying and pasting....</p> http://stackoverflow.com/questions/1921788/linq-2-sql-one-to-zero-or-one-relationship-possible 0 Linq 2 SQL One to Zero or One relationship possible? Mr. Flibble 2009-12-17T13:28:40Z 2009-12-17T15:00:46Z <p>Is it possible to create a one to zero or one relationship in Linq2SQL?</p> <p>My understanding is that to create a one to one relationship you create a FK relationship on the PK of each table. </p> <p>But you cannot make the PK nullable, so I don't see how to make a one to zero or one relationship work?</p> <p>I'm using the designer to automatically create the model - so I would like to know how to set up the SQL tables to induce the relationship - not some custom ORM code.</p> http://stackoverflow.com/questions/1918810/is-it-possible-to-select-data-while-a-transaction-is-occuring 1 Is it possible to select data while a transaction is occuring? Andrew 2009-12-17T00:47:54Z 2009-12-17T11:38:33Z <p>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 be possible to do this? I'm very noob when it comes to databases.</p> <p>I am using LinqToSQL and SQL Server 2005(dev)/2008(prod).</p> http://stackoverflow.com/questions/1921064/linq-to-sql-query-to-find-duplicate-rows-in-related-tables 0 LINQ to SQL query to find duplicate rows in related tables Rychu 2009-12-17T11:16:30Z 2009-12-17T11:19:39Z <p>I have three related tables: Location (Id), Document (Id,LocationId) and Version (Id,DocumentId,Identifier)</p> <p>Version' Identifier may duplicate inside Location but I want to get a list of Versions with the same Identifier in more than one Location.</p> <p>How to construct this query? Preferable in LINQ.</p> http://stackoverflow.com/questions/1032382/do-you-create-multiple-dbml-edmx-file-for-large-database-when-using-linq2sql-or 4 Do you create multiple .dbml/.edmx file for large database when using LINQ2SQL or Entity Framework? J.W. 2009-06-23T12:52:21Z 2009-12-17T11:18:08Z <p>When creating <em>.dbml/.edmx for a database which has a lot of tables, do you use multiple .dbml /</em>.edmx file or just a single giant file?</p> <p>Any pro/cons for splitting the model into multiple file?</p> <p>Thanks, J.W.</p> http://stackoverflow.com/questions/1920775/why-would-entity-framework-not-be-able-to-use-tostring-in-a-linq-statement 1 Why would Entity Framework not be able to use ToString() in a LINQ statement? Edward Tanguay 2009-12-17T10:28:02Z 2009-12-17T10:32:55Z <p>This <strong>works</strong> in LINQ-to-SQL:</p> <pre><code>var customersTest = from c in db.Customers select new { Id = c.Id, Addresses = from a in db.Addresses where c.Id.ToString() == a.ReferenzId select a }; foreach (var item in customersTest) { Console.WriteLine(item.Id); } </code></pre> <p>But a similar example in Entity Framework gets an <strong>error message</strong> that says basically that it can't "translate it to SQL", here is the original error message in German:</p> <blockquote> <p>"'LINQ to Entities' erkennt die Methode 'System.String ToString()' nicht, und diese Methode kann nicht in einen Speicherausdruck übersetzt werden."</p> </blockquote> <p><strong>Translation:</strong></p> <blockquote> <p>"'LINQ to Entities' does not recognize Method 'System.String ToString()', this method can not be translated into a memory expression.</p> </blockquote> <p><strong>Can anyone shed any light on how we could get this kind of statement to work in Entity Framework or explain why it gets this error?</strong></p> http://stackoverflow.com/questions/1919841/can-nhibernate-subsonic-or-l2s-do-per-entity-auto-increment 0 Can NHibernate, Subsonic or L2S do Per-Entity Auto-Increment? Michael Stum 2009-12-17T06:24:44Z 2009-12-17T10:04:48Z <p>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 ProjectID (that is: every projectID should have 1,2,3,... as TaskID).</p> <p>To my knowledge, this is not possible in SQL Server out of the box, and I'd need a stored procedure. Now before I dive into that, I wonder if I can instead do that on my ORM side? I'm undecided between NHibernate 2.1.2 and Subsonic 3.0, but even Linq-To-SQL is an option (Entity Framework is not) if that is possible with it.</p> <p>I know I can just manually write that code and I know that almost certainly a "SELECT max(TaskID) FROM Tasks WHERE ProjectID = @projectID" is needed in any case, but If I can avoid doing that and instead have my ORM do that, that would be nice.</p> <p>I haven't found anything in their respective documentations, but I don't really know if there is a proper term for this scenario? </p> http://stackoverflow.com/questions/1917690/when-can-i-dispose-of-my-datacontext 1 When can I dispose of my DataContext? James 2009-12-16T20:59:04Z 2009-12-17T08:43:02Z <p>Take the following example:</p> <pre><code>MyDataContext context = new MyDataContext(); // DB connection established. MyTableRecord myEntity = myDataContext.Table.FindEntity(12345); // retrieve entity </code></pre> <p>Say my entity has relationships with other tables which I would access via </p> <p><code>foreach (var record in MyEntity.RelatedTable)</code></p> <p>Do I need to keep my DataContext alive after the 2nd line in order to access the properties of the entities or is it safe enough to dispose of?</p> <p>I understand Linq to SQL uses delayed execution hence I am wondering if it only uses delayed execution when you initially retrieve the entity or whether it uses this when accessing the related table records aswell.</p> <p><b>Example</b></p> <pre><code>var userRepo = new UserRepository(); // creates new DataContext var auditRepo = new AuditRepository(); // creates new DataContext var activeUsers = userRepo.FindActiveUsers(); foreach (var user in activeUsers) { // do something with the user var audit = new Audit(); audit.Date = DateTime.Now; audit.UserID = user.ID; auditRepo.Insert(audit); } </code></pre> <p>My insert method in my repo calls <code>SubmitChanges</code>. So is the above acceptable, or is this a waste of a connection. Should I realistically do:</p> <pre><code>var userRepo = new UserRepository(); var activeUsers = userRepo.FindActiveUsers(); foreach (var user in activeUsers) { // do something with user var audit = new Audit(); audit.Date = DateTime.Now; audit.UserID = user.ID; user.Audits.Add(audit); userRepo.Save(); } </code></pre> <p>To re-use the already open DataContext? What would you do in situations where you open a high-level datacontext and then had to do some processing low level, should I pass the userRepo down or should I create a separate Repository?</p> http://stackoverflow.com/questions/1919065/conditional-where-with-or-criteria-linqtosql 1 Conditional where with or criteria linqtosql Adam 2009-12-17T02:07:47Z 2009-12-17T02:48:20Z <p>Howdy,</p> <p>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 conditional where clause something like:</p> <pre><code>var ResultsFromProfiles = from AllPeeps in SearchDC.aspnet_Users select AllPeeps; if (SearchFirstNameBox.Checked) { ResultsFromProfiles = ResultsFromProfiles.Where(p =&gt; p.tblUserProfile.FirstName.Contains(SearchTerm)); } if (SearchLastNameBox.Checked) { ResultsFromProfiles = ResultsFromProfiles.Where(p =&gt; p.tblUserProfile.LastName.Contains(SearchTerm)); } </code></pre> <p>This will get me any profiles where the first name AND the last name contain the search term.</p> <p>Or I could do:</p> <pre><code>var ResultsFromProfiles = from p in SearchDC.aspnet_Users where p.tblUserProfile.LastName.Contains(SearchTerm) || p.tblUserProfile.FirstName.Contains(SearchTerm) select p; </code></pre> <p>This would get me any profiles where the first name OR the last name contains the search term.</p> <p>I have a bunch of checkboxes where the user can specify which fields they want to search for teh search term, so I want to be able to build a query that will conditionally add them as in the first code snippet above, but add them as an OR so they work like the second snippet. That way it will search for any matches anywhere in the specified fields.</p> <p>Any tips?</p> http://stackoverflow.com/questions/1918321/linq-to-sql-with-too-many-records-for-memory 1 LINQ to SQL with too many records for memory Guy 2009-12-16T22:37:46Z 2009-12-16T22:48:37Z <p>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 process more records that can fit in memory. This is the pattern that I've come up with so far:</p> <pre><code>int skip = 0; IList&lt;Record&gt; records = new List&lt;Record&gt;(); do { records = DBRecords.Skip(skip).Take(1000).Select(a =&gt; new Record { // Set values here... }).ToList(); foreach (Record r in records) { yield return r; } skip += 1000; } while (records.Count &gt; 0); </code></pre> <p>This allows me to pull 1000 records at a time and return them in batches to the app. However, I know that there must be a better way of doing this?</p> http://stackoverflow.com/questions/1918244/how-can-i-access-an-object-property-set-within-an-initializer 0 How can I access an object property set within an initializer? upheaval 2009-12-16T22:25:17Z 2009-12-16T22:36:56Z <p>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?</p> <p>Here's what I'm trying to do:</p> <pre><code>var usersWithCount = users .AsEnumerable() .Select( u =&gt; new User() { UserId = u.UserId, UserName = u.UserName, Email = u.Email, RelatedId = u.RelatedId, ReviewCount = u.Reviews.Count(r =&gt; !r.Deleted &amp;&amp; r.Approved), HelpfulYesCount = u.Reviews.Where(r =&gt; !r.Deleted &amp;&amp; r.Approved).Sum(r =&gt; r.HelpfulYes), HelpfulNoCount = u.Reviews.Where(r =&gt; !r.Deleted &amp;&amp; r.Approved).Sum(r =&gt; r.HelpfulNo), TotalPoints = ReviewCount + HelpfulYesCount - HelpfulNoCount, DateCreated = u.DateCreated }) .OrderByDescending(user =&gt; user.TotalPoints); </code></pre> <p>The part that doesn't work is "TotalPoints = ReviewCount + HelpfulYesCount - HelpfulNoCount". I'd rather avoid using "u.Reviews.Count(r => !r.Deleted &amp;&amp; r.Approved)" again and I'd don't want to have to loop through the results to add those values together to set TotalPoints.</p> <p>How can I reference those properties within the initializer that were set above the TotalPoints property? Is there some way I can set them equal to variables and reference them where they are set and where I'm trying to add them? Am I approaching this situation the completely wrong way?</p> http://stackoverflow.com/questions/1910544/tracking-external-changes-to-a-database-with-linq-to-sql 0 Tracking external changes to a database with LINQ-to-SQL thebeav 2009-12-15T21:31:01Z 2009-12-16T21:58:24Z <p>Is there a way to get SQL Server 2005 to call back to a connected application, such that the connected application will know when a record in a table has had a field modified by another application using the same database?</p> <p>A simple example would be two instances of the same application connecting to the same table in the same database. When one instance of the application makes a change to a table, the other instance would get a notification that something has changed and be able to query the database for the change.</p> <p><strong>UPDATE</strong></p> <p>Thanks so much for the help so far. I would have never even known to look for the SqlDependency class. I've followed the instruction on this page <a href="http://msdn.microsoft.com/en-us/a52dhwx7.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/a52dhwx7.aspx</a> in creating the SqlDependency test demo. However, I wasn't able to get that to work. I never see the OnChange event get called.</p> <p>I've also attempted to modify my own application using the instructions as a guide with no luck. I've included the code from my own application below. Basically, the Position table has a PositionID field along with a LocationX and LocationY field. I've written another application that allows me to update the LocationX field of a given row.</p> <p>What am I missing? Why won't the database changes trigger my even handler?</p> <p><strong>UPDATE #2</strong></p> <p>Also note that I am using a hard coded SQL string for my command. I would prefer not to and use the commented out LINQ statement instead. Is it considered OK to use LINQ in this way to generate the SQL string that will be used to build the command?</p> <pre><code>public partial class MainForm : Form { private ArpPhase2DbContextDataContext db = null; private SqlConnection connection = null; private SqlCommand command = null; public MainForm() { InitializeComponent(); } private void MainForm_Load(object sender, EventArgs e) { this.canRequestNotifications(); this.db = ArpPhase2DbContextDataContext.Instance; this.setupSqlDependency(); } private void MainForm_FormClosing(object sender, FormClosingEventArgs e) { SqlDependency.Stop(this.db.Connection.ConnectionString); if (this.connection != null) { this.connection.Close(); } this.db.SubmitChanges(); } private bool canRequestNotifications() { try { SqlClientPermission perm = new SqlClientPermission(PermissionState.Unrestricted); perm.Demand(); return true; } catch { return false; } } private void setupSqlDependency() { // Remove any existing dependency connection, then create a new one. SqlDependency.Stop(this.db.Connection.ConnectionString); SqlDependency.Start(this.db.Connection.ConnectionString); if (this.connection == null) { this.connection = new SqlConnection(this.db.Connection.ConnectionString); } if (this.command == null) { var sql = (from position in this.db.Positions select position); //string commandString = sql.ToString(); string commandString = "SELECT * FROM Positions;"; this.command = new SqlCommand(commandString, connection); } this.getData(); } private void getData() { // Make sure the command object does not already have // a notification object associated with it. this.command.Notification = null; // Create and bind the SqlDependency object // to the command object. SqlDependency dependency = new SqlDependency(this.command); dependency.OnChange += new OnChangeEventHandler(this.dependency_OnChange); } private void dependency_OnChange(object sender, SqlNotificationEventArgs e) { // This event will occur on a thread pool thread. // Updating the UI from a worker thread is not permitted. // The following code checks to see if it is safe to // update the UI. ISynchronizeInvoke i = (ISynchronizeInvoke)this; // If InvokeRequired returns True, the code // is executing on a worker thread. if (i.InvokeRequired) { // Create a delegate to perform the thread switch. OnChangeEventHandler del = new OnChangeEventHandler(this.dependency_OnChange); object[] args = { sender, e }; // Marshal the data from the worker thread // to the UI thread. i.BeginInvoke(del, args); return; } // Remove the handler, since it is only good // for a single notification. SqlDependency dependency = (SqlDependency)sender; dependency.OnChange -= this.dependency_OnChange; // Add information from the event arguments to the list box // for debugging purposes only. Console.WriteLine("Info: {0}, Source: {1}, Type: {2}", e.Info.ToString(), e.Source.ToString(), e.Type.ToString()); // Rebind the dependency. this.setupSqlDependency(); } } </code></pre> http://stackoverflow.com/questions/1875277/inserting-a-new-object-into-l2s-table-and-databinding-to-it-prior-to-submitchange 0 Inserting a new object into L2S table and databinding to it prior to SubmitChanges() in WPF Kieran Benton 2009-12-09T16:57:46Z 2009-12-16T21:48:29Z <p>Hi, I'm just getting started with Linq-to-SQL and data binding in WPF, most of which works like a dream so far!</p> <p>I've got (what I though was) a common scenario:</p> <p>a) Query list of records from a table via datacontext and bind to the current user control </p> <pre><code>this.DataContext = db.ClientTypes; </code></pre> <p>b) Have the user see a bound ListView and some bound detail controls to make changes to the existing records, with a <code>db.SubmitChanges(ConflictMode.FailOnFirstConflict);</code> to push the changes back to the DB. No problem.</p> <p>c) User wants to add a new record, so we:</p> <pre><code>ClientType ct = new ClientType(); ct.Description = "&lt;new client type&gt;"; db.ClientTypes.InsertOnSubmit(ct); </code></pre> <p>However at this point I dont want to call <code>db.SubmitChanges</code> as I want the user to be able to update the properties of the object (and even back out of the operation entirely), but I want them to be able to see the new record in the bound ListView control. Thinking I just needed to re-run the query:</p> <pre><code>ClientType ct = new ClientType(); ct.Description = "&lt;new client type&gt;"; db.ClientTypes.InsertOnSubmit(ct); // Rebind the WPF list? this.DataContext = db.ClientTypes; listView1.SelectedItem = ct; listView1.ScrollIntoView(ct); </code></pre> <p>However this doesn't work, the newly created record is not part of the returned list. I'm not sure if this is because of caching within L2S or if I'm just going about this the wrong way. Is there a better way to accomplish this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1916773/linq-to-sql-mapping 1 Linq to Sql Mapping GeorgeRover 2009-12-16T18:45:03Z 2009-12-16T18:52:41Z <p>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 drag the table from sql server.</p> http://stackoverflow.com/questions/1912185/unit-testing-linq-2-sql-with-dbnull 0 Unit testing Linq 2 sql with dbnull Prashant 2009-12-16T04:02:21Z 2009-12-16T18:10:18Z <p>I am writing a unit test for a method which fills an object from a datatable. In one specific unit test, I want to check how the object will be filled if the datarow has a null value in it. If I assign a DBNull.value to the datarow, I get an exception while running the test.</p> <p>I have posted the Subject under test below - </p> <pre><code>return dt.AsEnumerable().Select( row =&gt; new ChannelManager{ ChannelId = row.Field&lt;int&gt;("EventId") }) .ToList(); </code></pre> <p>Test is - </p> <pre><code>DataSet ds = new DataSet(); DataTable dt1 = new DataTable(); dt1.Columns.Add("EventId", typeof(int)); DataRow dr1 = dt1.NewRow(); dr1["EventId"] = DBNull.value; dt1.Rows.Add(dr1); ds.Tables.Add(dt1); if(!test.ChannelId.HasValue) Assert.True(true); </code></pre> <p>But I get an exception saying Cannot cast DBNull.Value to type 'System.Int'</p> http://stackoverflow.com/questions/1107825/tips-for-migrating-from-xpo-to-linq-to-sql 0 Tips for Migrating from XPO to LINQ to SQL Jacob 2009-07-10T05:16:33Z 2009-12-16T17:55:01Z <p>I'm a long-time user of the DevExpress XPO library. It has many great features, but there are a few weaknesses:</p> <ol> <li>When saving an existing object, all properties are sent in an update query; changes are tracked on a per-object basis, not per-property.</li> <li>Optimistic locking is done on a per-object basis, rather than per-column.</li> <li>When an optimistic locking exception occurs, no context is provided describing the nature of the conflict; your only real response is to fail the operation or reproduce it and try again in a loop.</li> <li>LINQ support for XPQuery is very weak (at least in 8.1, which we're using). Thus, you're often forced to use XPView, which is not type-safe, or XPCollection, which can be returning columns you don't necessarily need.</li> </ol> <p>After reading about how LINQ to SQL implements optimisting locking and handling update conflicts, I was sold! I like how it implements column-level optimistic locking and doesn't need to add a column to the table. Being able to inspect and handle the exact nature of conflicts is great. And the fact that they track per-column changes should make its update queries much more efficient.</p> <p>Of course, I haven't yet used LINQ to SQL in real applications, so I don't know it compares in reality. Also, I'm unclear on if it has analogs for some of the features we enjoy with XPO, such as:</p> <ol> <li>Automatic schema updates (we believe in object design driving database structure rather than the reverse, and this greatly simplifies software deployment)</li> <li>Two options for how inheritance is implemented (same-table or one-to-one table relationships)</li> <li>Support for in-memory storage (though I suppose that we could substitute LINQ to Objects in our unit tests)</li> <li>Storage provider customization (that allowed us to add NOLOCK support to our XPO queries)</li> </ol> <p>We're going to be doing an exploratory partial migration where we will be temporarily using the two ORMs for different parts of our code. Have any of you had real-world experience with both XPO and LINQ to SQL? How do they compare in practice? Specifically, do you know of any features that LINQ to SQL lacks that would provide challenges to a code migration?</p> <p>Oh, and should I even care about LINQ to Entities? It looks far more complicated than anything we need.</p> http://stackoverflow.com/questions/1914929/randomized-linq2sql-query-thats-return-too-heavy-sql 0 Randomized Linq2SQl query that's return too heavy SQL Niels Bosma 2009-12-16T14:20:09Z 2009-12-16T17:53:17Z <p>I use the following to implement Random ordered results in Linq2SQL:</p> <pre><code> partial class OffertaDataContext { [Function(Name = "NEWID", IsComposable = true)] public Guid Random() { throw new NotImplementedException(); } } </code></pre> <p>In the following query:</p> <pre><code>IEnumerable&lt;Enquirys&gt; visibleOnSite = Enquirys.Where(e =&gt; e.EnquiryPublished != null &amp;&amp; e.Status != 0 &amp;&amp; e.Status != 3 &amp;&amp; e.Status != 4 &amp;&amp; e.Status != 5 ); var linq = ( from e in db.EnquiryAreas from w in db.WorkTypes where e.SeoPriority != 0 &amp;&amp; e.HumanId != null &amp;&amp; w.SeoPriority != 0 &amp;&amp; e.HumanId != null &amp;&amp; e.SeoPriority * w.SeoPriority &gt; 20 &amp;&amp; visibleOnSite.Any(f =&gt; f.WhereId == e.Id &amp;&amp; f.WhatId == w.Id) select new { HWhereId = e.Id, WhereDescription = e.DescriptionText, HWhatId = e.Id, WhatDescription = e.DescriptionText } ).OrderBy(e =&gt; db.Random()).Take(14); </code></pre> <p>I have a problem with the SQL result:</p> <pre><code>SELECT [t3].[Id] AS [HWhereId], [t3].[DescriptionText] AS [WhereDescription], [t3].[Id2] AS [HWhatId], [t3].[DescriptionText2] AS [WhatDescription] FROM ( SELECT TOP (7) [t0].[Id], [t0].[DescriptionText], [t1].[Id] AS [Id2], [t1].[DescriptionText] AS [DescriptionText2] FROM [dbo].[EnquiryAreas] AS [t0], [dbo].[WorkTypes] AS [t1] WHERE ([t0].[SeoPriority] &lt;&gt; 0) AND ([t0].[HumanId] IS NOT NULL) AND ([t1].[SeoPriority] &lt;&gt; 0) AND ([t0].[HumanId] IS NOT NULL) AND (([t0].[SeoPriority] * [t1].[SeoPriority]) &gt; 20) AND (EXISTS( SELECT NULL AS [EMPTY] FROM [dbo].[Enquirys] AS [t2] WHERE ([t2].[EnquiryPlace] = ([t0].[Id])) AND ([t2].[EnquiryWorkType] = ([t1].[Id])) AND ([t2].[EnquiryPublished] IS NOT NULL) AND ([t2].[Status] &lt;&gt; 0) AND ([t2].[Status] &lt;&gt; 3) AND ([t2].[Status] &lt;&gt; 4) AND ([t2].[Status] &lt;&gt; 5) )) ORDER BY NEWID() ) AS [t3] ORDER BY NEWID() </code></pre> <p>Where everything works fine if I remove the inner ORDER BY NEWID(). (With both, the query takes too long to finish). Is there any way I can modify my Linq2SQL to only result in the outer ORDER BY NEWID(). If not, any other workaround? Other ways to implement Random?</p> http://stackoverflow.com/questions/1916239/how-to-best-map-database-aware-entity-types-between-application-layers 1 How to best map database-aware entity types between application layers Chris Farmer 2009-12-16T17:25:52Z 2009-12-16T17:46:27Z <p>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 domain-centric objects in place of my LINQ to SQL entities, and I have been using AutoMapper to help accomplish some of this. For simple property-to-property mapping, it's nice and trivially easy to use, but now I am faced with the problem of mapping entities which themselves contain only template text and database connection and query info. I would like to map these templated source types to fully token-replaced destination types.</p> <p>For example, I have source and destination types...</p> <pre><code>public class Source { public int Id { get; set; } public string MarkupTemplate { get; set; } public string DatabaseConnectionString { get; set; } public string DatabaseQuery { get; set; } } public class Destination { public int Id { get; set; } public string Value { get; set; } } </code></pre> <p>A source object might look something like this:</p> <pre><code>var source = new Source() { Id = 123, MarkupTemplate = "The %noun% is %adjective%.", DatabaseConnectionString = "Some SQL Server conn string", DatabaseQuery = "SELECT noun, adjective FROM things WHERE id=@id" } </code></pre> <p>During the course of mapping (or elsewhere, if it makes sense to do that... I'm open to suggestion!) I need to:</p> <ol> <li>Connect to the database described in the source's <code>DatabaseConnectionString</code> property.</li> <li>Execute the select query that's in the source's <code>DatabaseQuery</code> property to get a single record.</li> <li>Replace tokens that are in the source's <code>MarkupTemplate</code> value with values found in the record returned from the database.</li> <li>Put the token-replaced content into the destination's <code>Value</code> property. With the example <code>source</code> object above, the destination's <code>Value</code> property should contain "The car is red." if the database query returns "car" and "red" for noun and adjective.</li> </ol> <p>In my hacked-together prototype, I created quick-and-dirty methods in the repository to handle the token replacement steps and return the token-replaced value string, but I'd like to try to clean this up into a design that's a little easier to work with. Ultimately, I'd like to have a straightforward mapping mechanism that can provide my destination objects which I can send to my views, where those objects are as free of dependencies as possible.</p> http://stackoverflow.com/questions/1916265/onetoone-relation-cardinality-in-linq-to-sql-with-sqlmetal 0 OneToOne relation (cardinality) in LINQ to SQL with SQLMetal Sasha 2009-12-16T17:29:58Z 2009-12-16T17:29:58Z <p>Is there any possibility to set OneToOne relation (cardinality) when generate dbml with SQLMetal? By default dbml schema generated with the OneToMany relation.</p> http://stackoverflow.com/questions/1901456/linq-to-sql-in-compact-framework 2 LINQ To SQL in Compact Framework gtas 2009-12-14T15:12:37Z 2009-12-16T17:01:28Z <p>Im on to design my Data Access for a new solution i create. That solution though contains Compact Framework Device Application and libraries besides Desktop. All .NET 3.5. Desktop will handle all Data Access basically. I need the Data Objects to have in CF too, Desktop will communicate with SQL and then with Mobile and give the appropriate data...</p> <p>I love LINQ, and more i love LINQ 2 SQL. There is a lot of hype out there and i don't buy internal Microsoft politics about recommending EF. For now EF is too heavy and too complex for someone to choose it besides it still evolving and EF 4 will have major changes when it comes in a few months. But i cant wait for months to create a project as every developer in here, i want something now! After that said i want to use LINQ 2 SQL, my problem is that i cant just copy the generated dbml and use the generated classes. I don't need the DataContext cause i don't intend to use CRUD or any operations on a database with the Mobile App. i Just want the Objects. Anyone ever came in a situation like this? The whole point is not to write all classes representing the tables by hand. Cause i need them for further LINQ to Objects manipulation.</p> <p>Basically an ORM supporting CF would do the job! But i don't know any incompatibilities i would meet.</p> http://stackoverflow.com/questions/1906296/mocking-linq-to-sql 0 mocking LINQ to SQL Coppermill 2009-12-15T09:45:57Z 2009-12-16T15:21:36Z <p>What is the best and easiest way to unit test a Class that uses LINQ to SQL and returns back a decimal, is it by Mocking? If so how do I go about this? </p>