Tagged Questions
0
votes
0answers
21 views
Reource not found for 'x' in query using against Sql ce in MVC 4
I have a table in SqlCe (sdf file) by the name "SendMessages". I want to query its data using WCF DataServices. It means that I have a dataservice that all of my context issues are there.
In my MVC ...
0
votes
1answer
63 views
VB LINQ to SQL as variable
I have searched everywhere and cannot find the answer. Every example either has a datagridview or stops at Select. I need to store the DataContext result as a variable in VB. In a previous bit of ...
0
votes
1answer
23 views
Serialize Linq2Sql Object After Dispose
I'm trying to find a simple way to serialize any object so that only the immediate properties and their "ToString" values are included. In the case of an object coming from a DataContext I want to be ...
0
votes
1answer
285 views
Linq DataContext SubmitChanges InvalidOperationException from ZombieCheck
I am getting an InvalidOperationException when trying to add a row using LinqToSql. We cannot duplicate it in house, and it happens about 0.06% for only one of our customers, always on a relatively ...
1
vote
1answer
106 views
Recompile Query-Hint on a System.Data.Linq.DataContext object
I have a query that is being called by a DataContext object that is creating an extremely inefficient execution plan. I would like to add an "OPTION(RECOMPILE)" query hint to the query, but I do not ...
0
votes
1answer
90 views
DataContext seems to be pulling 2 copies of the same record from the database
I have a DataContext that seems two be pulling two copies of the same record out of the database. There's only one record of this kind in the database.
Here the code that is doing it:
...
1
vote
2answers
175 views
Get Table type when you have different table name from datacontext
We can get table name if we have table type. like here
DataContext dc = new DataContext();
var tableName = dc.Mapping.GetTable(type).TableName.ToString();
In my case I have table name and wants to ...
0
votes
1answer
220 views
How to Iterate through Tables in a DataContext and Test-Read Records?
I am trying to create a TestMethod that will enumerate the tables in my data context and attempt to read one record from each table. The goal of the test is to make sure that my .dbml file is in synch ...
0
votes
1answer
188 views
Linq DataContext still retrieve “Deleted” object
I'm working with a grid bound to Linq Data "Object list".
The grid behave in a "disconnected fashion" it means that when I edit or suppress a line the change is not immediately submitted to the ...
0
votes
2answers
213 views
Linq and DataContext
Would it be ok to have only one DataContext per app and share that through an singleton?
I ask this because i would like to have the DataContext in every form but i realized that, if i change some ...
0
votes
1answer
318 views
Linq DataContext InsertOnSubmit statement Inserts only NULL values in the table
Please help!!!
I have this simple piece of code, I don't have a clue why is not doing what is supposed to do which is insert the data contained in the class, I have not idea what am I doing wrong, ...
0
votes
0answers
32 views
MissingElementException
I need add table to my .dbml file to work with database using LINQ to SQL. I wrote sql script with creating table and creating stored procedures: Insert, Update and Delete. But when I try to make ...
0
votes
1answer
42 views
LinqToSQL Can't Update Twice
I try to update twice with same data but it throw exception
public void UpdateOnSubmit<T>(T data) where T : class
{
lock (_lockObj)
{
using (DataModel dx = ...
1
vote
1answer
112 views
Linq to SQL - Attribute based mapping - cannot instantiate new object with no arguments
I want to extend Linq's DataContext class to implement the ORM. Currently my model looks like this:
public class Trial : DataContext
{
public Trial(string connectionString) : ...
0
votes
1answer
132 views
Is Repeatedly Calling DataContext.GetChangeSet() Performant?
I can't seem to find documentation about the performance of the GetChangeSet() function of LINQ-to-SQL's DataContext class. I see a lot of code in our own organization and posted around the web making ...
0
votes
1answer
1k views
EntityFramework: Retrieve data with a condition on two different context
I'm importing data between two different database(which have not the same context).
So I've two different context. The goal is to import some data of the context A to the context B.
Data in the ...
0
votes
1answer
98 views
Getting DataContext error while saving form
I get this error when opening one specific form. The rest is working fine and I have no clue why this one isn't.
Error: An attempt has been made to Attach or Add an entity that is not new, perhaps ...
1
vote
1answer
340 views
Linq to SQL using global datacontext to keep track of user changes?
I got a design dilemma and I'm not sure how to approach this as I'm new to the whole Linq scene. I'm planning on creating a winforms application using a datagridview to display some data from my ...
0
votes
5answers
448 views
ASP.NET MVC Controller recommendation for LINQ DataContext instantiation place
How should I instantiate the datacontext (entity fw) in a MVC Controller:
as a property in class
as a field in class
as a variable in Action
as abstract away your DbContext with the Repository ...
2
votes
2answers
2k views
C# Linq to SQL connection string (newbie)
i am a new linq to sql learner and this is my very first attempt to create a data viewer program. The idea is simple, i'd like to create a software that is able to view content of a table in a ...
0
votes
1answer
202 views
Using LINQ to SQL with Views Need to Cast / Convert to Table
My SQL Server database contains several views which are essentially filtered (WHERE) / ordered (ORDER BY) versions of some of the tables i.e. no joins.
An example would be my Downloads table, which ...
0
votes
1answer
53 views
Is it possible to create a script out of my dbml file?
I have a table like T1 with columns C1 and C2. I have the dbml with this table T1.
I want to generate the script for Insert/Update/delete.
For eg:
I don't want datacontext to excute the task.
...
0
votes
0answers
72 views
Updating Newly Inserted Record With LinqDataSource
I can easily get the newly inserted record I need in the OnInserted event of the LinqDataSource, but if there is an easy way to turn around and update that record, then I am missing it... well I ...
0
votes
3answers
323 views
Linq to SQL Extended Data Classes - Share a DataContext
I'm using the partial classes feature of Linq2SQL to add some helper methods to my objects.
The problem is that I need to perform some additional database queries in these helper methods, so I have ...
1
vote
1answer
306 views
Linq-to-SQL DataContext update
I am getting this runtime exception
Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to
type 'System.String'.
How can I fix my code to get my result without exceptions?
...
0
votes
0answers
149 views
DataContext LINQ Queries - Should I use my own data object classes?
I apologize if my vocabulary is off on the following question.
I have an SQL Database that has multiple relationships to tables within that database. I've created a DataContext for this database and ...
2
votes
4answers
140 views
Remove duplicate code in query
I have this code :
list = _dataContext.myTable
.Where(row => row.Label.Contains(myText))
.OrderBy(row => row.Label)
.Select(row => new MyClass
{
Field1 = row.Field1,
...
0
votes
0answers
70 views
DataContext object contains ResultView and loads all data
As new to LINQ and I created one dbml file say dbtest.dbml of test table which is having approx 1000 records. And then I created object of dbtestDataContext class. When see that object in more detail ...
0
votes
1answer
217 views
Building and Separation of Query Logic in Linq /mvc4
I am trying to separate my logic for better readability and re-useability. I am trying to build a better application.
I will show you a sample of a working controller and model and show where I am ...
1
vote
1answer
395 views
The Name 'insert name here' does not exist in the current context
I don't get why is that the "dbo" in this query
var searchUser = from user in dbo.Accounts
where user.accnt_user == txtUser.Text &&
...
1
vote
2answers
992 views
Does not exist in the current context
How come this line of code mine shows an error of
var searchUser = from accnt_user in dbo.Accounts
where accnt_user == txtUser.Text &&
...
0
votes
1answer
152 views
How to Get Set Linq Entity With Only String Name
Okay so I have the string name of the linq entity.
string table = "Person";
I have the datacontext and there's an entity or database table called Person.
I'd like to be about to somehow using the ...
3
votes
1answer
150 views
Using LINQ to SQL where database tables can have extra columns
Our development team would like to use LINQ to SQL in our data access layer. An issue we've run into is that the SQL Server database we're accessing can sometimes have additional columns in certain ...
2
votes
1answer
195 views
LinqToSql DataContext cache and memory usage
I was wondering if the LINQ to SQL DataContext cache use WeakReference or a similar system to avoid using too much memory after a few requests?
Does this behavior depends on the ObjectTrackingEnabled ...
2
votes
1answer
566 views
One DataContext For Linq To SQL While Using Repository Pattern
I am fairly new to .NET C# development and recently started using LINQ to SQL for the majority of my data access layer. Unfortunately, I have been struggling with how to manage my DataContext so that ...
0
votes
2answers
86 views
Using view model organizes code, but does it have impact on performance?
Part I
I am working on a web application that instead of using a viewmodel class to organize data and be used in View, uses a database table model. So for example in my view, model declaration looks ...
0
votes
1answer
1k views
LinQ DataContext - The operation cannot be performed during a call to SubmitChanges
The code which is throwing exception is extremely easy - this is very regular insert and then submit changes statement which looks:
context.tb_dayErrorLog.InsertOnSubmit(data);
...
0
votes
1answer
282 views
Linq: scoped DataContext, unit-of-work, repository
I have been researching about the unit-of-work and the repository pattern in C#. AFAIK, DataContext implements the unit of work pattern, and can be used to implement a repository interface. One last ...
0
votes
1answer
83 views
LINQ DataContext Object Model, could it be used to manage a changing data structure
I am currently working on a project where we are rewriting software that was originally written in Visual DataFlex and we are changing it to use SQL and rewriting it into a C# client program and a ...
1
vote
1answer
512 views
Linq-to-SQL Removing from ChangeSet
I have an ObservableCollection<Widget> that on NotifyCollectionChangedAction.Add executes context.Widget.InsertOnSubmit(addedWidget).
Before I execute context.SubmitChanges() I need to remove ...
0
votes
1answer
114 views
LINQ what is the best pratice to create db manager class?
What is the best performance and consistency?
Variant one (inherit from DataContext):
public class MyDbManager : DataContext
{
public MyDbManager(string conn):base(conn)
{
var ...
0
votes
1answer
261 views
Using same connection string in a DataContext constructor and SqlConnection
I am preparing to deploy a web service that uses SqlConnection primarily as its means to get to the database, and I am adding some new methods that use a DataContext instead of that, and the default ...
4
votes
1answer
315 views
DataContext.CreateDatabase is creating the database with columns in random order
I am having a c#.Net desktop application in which I use Linq as ORM and SQL server Express as my database. So, when I use dataContext.CreateDatabase() method, 90 % of the times it is creating the ...
0
votes
1answer
606 views
Sequence Contains no elements Linq-to-Sql
i m having very strange problem in this simple linq query
return (from doc in db.umDocumentActions
where doc.sysDocument.ModuleID == modid
join roleaction in ...
2
votes
2answers
324 views
How I keep entity object after DataContext disposed?
I use this style when I get data from database
public class User
{
public static List<User> GetUsers()
{
List<User> users = new Users();
using ( var context = new ...
4
votes
2answers
2k views
LINQ Query incredibly slow - why?
I got a very simple LINQ query:
List<table> list = ( from t in ctx.table
where
t.test == someString
&& t.date >= ...
0
votes
1answer
607 views
Linq to sql, aggregate columns ,group by date into listview
Okay so I have a listview control with 3 columns:
Year | NetTotal | GrossTotal
also i have a table called Orders with several columns, they contain information about the order and store the ID of ...
0
votes
1answer
306 views
How to create a update function in LINQ when object has a list?
I´m still having a hard time with Linq.
I need to write a Update Function tat receives an object that has a list. Actually, A region has a list of cities. I want to pass an object "Region" that has a ...
0
votes
2answers
232 views
LINQ. Reducing the code by using dynamic queries
I use the following code to fill the Table1 dictionary with the information found within the LINQ query.
Dim DB As New DatabaseDataContext
Dim Table1 As New Dictionary(Of String, Integer)
Dim ...
0
votes
1answer
245 views
Updating Custom Datacontext in Silverlight
So I dynamically and programatically set separate datacontexts for different screens in my SL app. I did this because there was data that needed to be displayed in one screen, coming from different ...
