Tagged Questions
0
votes
1answer
33 views
Getting an “Items collection must be empty before using ItemsSource” with EF
We're using entity framework to retrieve our data. We're trying to bind a collection view source to a combo box to display the data. Here's the definition for the CollectionViewSource:
...
0
votes
1answer
25 views
How to get Selected Value of DevExpress WPF ComboEdit binded with Entity?
I am having a ComboEdit control in my WPF application which is binded by Entity named with 'Contacts'. now i want to ge the selected value of ComboEdit.
<dxe:ComboBoxEdit Name="ddlFirstName" ...
-4
votes
0answers
35 views
Using C#, Entity Framework & Linq I am trying to pick which Entity(table) is used from a combobox
I cannot seem to find the answer to what I thought would be a common scenario. I have a grid view and I want to display data from one of a number of tables. I cannot seem to get the list of tables to ...
0
votes
0answers
35 views
EF4 and ODP.NET what handles the connection string in Entity Framework 4?
I have been using the Oracle Data Provider (ODP) in conjunction with my custom data models and my DAL to retrieve data from my tables, but now I want to convert to using Entity Framework to complete ...
1
vote
1answer
53 views
Entity Framework & WPF Datagrid binding
I have a pretty simple little app that is using EF and WPF. I'm trying to create a very lightweight 'project tracker' for our small team at work. The classes look like:
class Project
{
public int ...
1
vote
1answer
54 views
Display name from foreign Key constraint within a combobox
I have three tables. Employee, ClientEmp and Client.
ClientEmp has the ForeignKey of both Employee (EmployeeID) and Client(ClientID).
So far, I am able to save changes to ClientEmp in my database ...
0
votes
1answer
38 views
Update dataGrid to EF
I display data into DataGrid in this way
var display = (from r in ve.Folders.Include("Hosting_Company1")
select new RepoClass{ id = r.Folder_Id,name= r.Full_Name, hosName= ...
0
votes
1answer
26 views
wpf and ef select part of a table with include
I have a table with many fields and I want to get only a few individual fields, I work with EF and I add another table to the query as follows
var Test= ve.Folders.Include("Hosting")
...
0
votes
2answers
50 views
Recovering after exception when using a single dbcontext
I am using entity framework to persist data in a N-tier Wpf application. My dbcontext is shared amongst all repositories and is never disposed. When I persist data I mark an object as modifed and try ...
0
votes
3answers
62 views
Add new data with Entity Framework
I am trying to add new data to my database, here is my code:
// This is the dbContext
private BugTrackerDBContainer db = new BugTrackerDBContainer();
//The objet with its properties
public static ...
0
votes
0answers
24 views
How to save data when the CollectionViewSource is used
We're working on a WPF app, that uses entity framework to access the data from a SQL Express database. In the XAML we have specified a resource like this:
<UserControl.Resources>
...
1
vote
2answers
71 views
Binding Entitys to a WPF form MVVM
My question might require several answers or a good example I might be going about things all wrong, I appreciate any help.
In essence I am trying to bind a WPF form to my Entity Frame work model, ...
0
votes
1answer
141 views
Create a login page using EF WPF
I'm creating a login page to enable a user to use a WPF MVVM application. So far I'm using Entity Framework model, connected to a SQL database.
I have one table that contains some user details such ...
0
votes
0answers
28 views
When setting a field to None in the Data Source, do you have to drag it onto a control with a data context?
Something we're trying to figure out is how to specify the type of control we want to drag fields from databases, or entity framework objects, onto the WPF window, user control, page. In particular, ...
0
votes
1answer
68 views
A simpel WPS using MVVM and EF
I'm on the edge of going nuts.
I have a working WinForms/database application, that I try to rebuild with WPF. My main problem is that I haven't worked with MVVM before and I can't seem to get the ...
-2
votes
2answers
139 views
handle Entity Framework 5 Exception for CRUD aperations [closed]
I am using entity framework 5 in a wpf application and I want to catch all exceptions when I add or delete or move or update an entity (CRUD operations ) especially when there is foreign keys , then ...
4
votes
2answers
105 views
Doing CRUD to many types using one view in MVVM
I have three types of Items as follows :
public class StockItem
{
public int Id { get; set; }
public string Name { get; set; }
public decimal UnitPrice { get; set; }
}
public class ...
0
votes
0answers
39 views
WPF Page auto create code that fill dataset
this may be a really stupid question but...
I am working with datasets and EF's, and I am trying to load data onto a WPF Page. I drag a datagrid from the DataSource Panel. Doing this automatically ...
0
votes
1answer
73 views
Null Values in Entity Framework
var query = from section in load_sections.Sections
join course in load_sections.Courses
on section.Course_Id equals course.Course_Id
join faculty in ...
1
vote
2answers
32 views
Adding a record to EF 4.1 does not reflect in listbox
I have a data bound list box that was built using the EF 4.1 model first. So all my classes where built for me. Because I have three controls that reflect the table data that traces back from the ...
1
vote
0answers
37 views
Wpf entity framework two tables
I've two database tables:
1st: items
item id
item name
item type FK
2nd: item type
item type id
item type name
I want to binding this object to devexpress GridControl and show 2 columns in a ...
1
vote
2answers
43 views
Why isn't my property aware of changes made directly to the database
I have a simple View and ViewModel. When you click on the ComboBox of Technicians and select a Technician, the Tests for the SelectedTechnician are displayed in the ListView you see below. This works ...
1
vote
1answer
62 views
How can I make double clicking on a DataGrid item open a more detailed view?
Please forgive any basic errors - I'm new to both Entity Framework and WPF.
I have a DataGrid in a TabControl. The grid is bound to an Entity Framework model.
My end goal here is to be able to ...
2
votes
1answer
82 views
Unable to save using Multiselect Item within ComboBox WPF
Im creating an application using Entity Framework and MVVM. Within my app, I have a combobox that I have created following using the following link
Within this link, It is exactly what I want to ...
0
votes
1answer
69 views
ObjectContext in ViewModel (EF + MVVM)
I'm currently writing my first MVVM application which uses EntityFramework for data access.
The Application relies heavly on the underlying database and has to add new Data to the DB in many cases.
...
1
vote
1answer
284 views
Can not Detect Changes in Datagrid records bound to EF navigation property MVVM (works with listview)
I have a WPF application using the MVVM model and Entity Framework 5 for the data access. I have a user control that contains a master / detials view of employees. A listview for the list of ...
1
vote
1answer
37 views
Commit DataGrid data to database?
I would like to save the data in this datagrid to my database.
Currently I am using entity framework to interact with my database.
<DataGrid ItemsSource="{Binding ModelListe}" ...
0
votes
1answer
159 views
Final step of Database Accsess WPF MVVM
Ok i think i got most of the knowledge now but sadly i cant find any tutorial wich can acutal help me because most are working with SQL Connections and im using the entity Framework.
Now im so far ...
0
votes
0answers
143 views
Saving WPF RichTextBox Contents to/from string Removes Floater Elements
I've scoured the web for an answer to this and I am obviously missing something so I have come to the Stackoverflow mountain seeking enlightenment. Let me apologize for the overly long post, but I ...
2
votes
2answers
123 views
EF Update is not Updating the GridView
Im still in the learning Phase of WPF, EF and MVVM and now i got the folloing Probplem. I can delete and Insert new items in my DataGridView but i dont know how to Update my items. All i do is ...
1
vote
1answer
45 views
Why is the previous result returned from my EF stored procedure function import?
3 programmer colleagues here are baffled by this. Why is old data is being returned from a prior stored procedure call? Here I show the incorrect result of the second search:
The first search works ...
4
votes
2answers
462 views
Nested Data Binding using MVVM in WPF not working
I am not able to figure out why my third Nested DataBinding in WPF is not working. I am using Entity Framework and Sql Server 2012 and following are my entities. An Application can have more than one ...
0
votes
0answers
72 views
simple automatic form builder for POCO or other classes
I have lots of POCOs for which I need forms. My main work is currently to copy and paste the ViewModel and View and edit to build all these forms. It is every time the same procedure.
While ...
1
vote
1answer
99 views
The object cannot be deleted because it was not found in the ObjectStateManager #2
I get the problem in the screenshot:
Here is the code at the beginning of the program:
public MainWindow()
{
InitializeComponent();
BlackoutDates();
...
-4
votes
2answers
1k views
An error occurred while updating the entries. See the inner exception for details [closed]
When i delete an item in a listbox, i get the error in the question as shown in the screenshot below:
I do not know where the inner exception is, but i tried try, catch but i got the same error in ...
1
vote
2answers
96 views
Filter out results in entities C# does not contain a definition for execute
I wanted to filter out results using this command from the query, but i get this error:
Here is the code causing the error:
private void Bookings_Loaded(object sender, RoutedEventArgs e)
{
...
1
vote
0answers
186 views
Short lived DbContext in WPF application reasonable?
In his book on DbContext, @RowanMiller shows how to use the DbSet.Local property to avoid 1.) unnecessary roundtrips to the database and 2.) passing around collections (created with e.g. ToList()) in ...
2
votes
1answer
69 views
Real-time watching of a CSV being written to in WPF
We have a piece of lab equipment that consistently writes tab-delimited records to a CSV file and I am tasked with writing an app to consume that data. That part is easy. However, on top of this I am ...
0
votes
1answer
61 views
WPF Server Data Binding Layer Architecture
I have been working with Windows Forms for more than 12 years and now I think its time to learn WPF. So Im in the learning curve process but I have some questions regarding the Server Data Binding ...
0
votes
2answers
153 views
A first chance exception of type 'System.InvalidOperationException' occurred in PresentationFramework.dll
All,
I'm using DataBase First Entity Framework v4.4. In the DB (and data model) is Table1 that has a 1:many relationship to Table2.
I am binding a DataGrid in WPF to Table1.Local.First().Table2 ...
3
votes
1answer
141 views
Filtering a Collection in a ListView in WPF
I'm creating an WPF application that allows a user to enter some details about their Employee, using Entity Framework, CRUD operations and MVVM.
So far, I have two ListViews. One contains a list of ...
2
votes
1answer
347 views
WPF datagrid does not automatically refresh Entity Framework
I'm new in WPF. Now, I'm writing a project of WPF with Entity Framework. I can add and delete items correctly on my wpf; however, after I add or delete items, my datagrid still didn't refresh. Even I ...
0
votes
1answer
57 views
EF Code First - duration of Context when used in populating model
I'm migrating a Typed Dataset-based WPF app to use Entity Framework 5 Code First (.Net 4.5).
I currently load up the model with data from the DataSet. Model fields are then bound to XAML DataGrids. ...
1
vote
1answer
64 views
Representing a Foreign Key as some other value in a WPF StackPanel GridViewColumn
I have a StackPanel that sets its GridColumns with the Columns of the Entity's Properties / Table Columnms. A lot of the columns are Foreign Keys from other tables. A brief example below shows once ...
0
votes
2answers
277 views
WPF datepicker validation error appears when binding value is null
I have a WPF application where I am using a date picker that is bound to an entity framework(with SQL server) entity's date field. I bind it as follows:
<DatePicker x:Name="dtComplete" ...
1
vote
0answers
155 views
Data layout on WPF DataGrid when binding to Entity Framework
I am binding a WPF DataGrid to Entities through Entity Framework. I do not find a way to present data on the DataGrid the way I want to and I cannot/do not want to touch the source database data or ...
1
vote
1answer
169 views
Object reference not set to an instance of an object. (WPF Entityframework)
I'm new for entity framework.
Now, I'm writing the delete function with a button. When I click this button, my data will be deleted; however, it will popup the alert that 'Object reference not set to ...
0
votes
0answers
44 views
How to revert column change in EF
In EF4, I want to show a confirmation message when user changes a particular column, saying something like "Are you sure you want to change it?", Yes/No. I want to accept this change only if user ...
-2
votes
1answer
92 views
Entity Framework: Requerying source before Saving Changes
Right. My database table contains thousands of records and I'm reading only a few dozen by applying a date filter using EF. Say my user changes a few of them in the UI and then changes the date range ...
0
votes
1answer
57 views
Entity Framework confusions
This is WPF + MVVM + EF. I have a table of Sales Orders in my DB. In the UI, I show a ComboBox with all SalesOrderNumbers and a Grid with Labels and TextBoxes that shows the details of selected order ...





