I have been renaming our model names in our codebase using resharper. I had made some changes some of the modals names within the .dbml file. I noticed that I need to add the na开发者_运维问答me attri
I need to strip the following chars from my records using LINQ to SQL query \"\\\";:\'.,=+!@#$%^&*(_)~{}[]\\\\|<>? aeiouAEIOU\"
I am trying to create an extension method that i can forward a IList of statuses and check weather they exist, I thought the best way to do this was an ILIST - but maybe i wrong? Is this the best way
I have a GridView bound to a table using BindingSource and Linq to SQL classes. The table structure is like this:
I have two tables in which I store a tree with ordered levels like this: Table: TreeData ---------------
I\'ve once heard from some developers that L2S is not scalable. I\'m not sure that I fully understand what that means.
public class ForumTopic { public Guid ForumTopicId { get; set; } public Guid OwnerId { get; set; } public Guid CategoryId { get; set; }
Does anyone know of any libraries which implement an abstraction in LINQ over the Entity Attribute Value (EAV) pattern?I have a large legacy EAV database and I\'m trying to create a cleaner data acces
To delete all the rows in a table, I am currently doing the following: context.Entities.DeleteAllOnSubmit(context.Entities);
Is there a way to force LINQ-to-SQL to treat a column as dirty? Globally would suffice.... Basically, I\'ve got a problem with some audit code on a legacy system that I\'m talking to with L2S, imagin