0
votes
0answers
33 views

RIA Services errors after application pool restart

I have done some searching around and found some issues that might be related to mine but not the same, so I hope someone can shed some light into a problem we are experiencing. We are developing a ...
0
votes
1answer
34 views

EntityFramework - Use Entities in Modules without access to the Database

I'm currently creating an application which is highly modular (using the Prism-Framework) and accesses a database via the EntityFramework implemented in CodeFirst. My goal is to seperate the actual ...
4
votes
2answers
134 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
41 views

EF Related objects not loading for the first time in a wpf prism application

Hello I am using Prism with EF in WPF application. here is the structure. Shell AppViews Services Entities Data Services is not a wcf service. I am using Unity for IOC/DI. The issue I notice is as ...
0
votes
0answers
83 views

Move data from DAL to other modules using Entity Framework

I have project based on Prism, it contains 3 modules : DataAccessLayer (DAL), DataPresenterModule, CommonModule. My DAL contains EntityFrameWork 4.1 item and I have some issue: I want move anonymous ...
0
votes
1answer
118 views

How to get the value from DataGrid's SelectedItem?

In my project i have one Datagrid and i bind the following fields that are listed below. CustomerID, Name, Email. I have the Entity named WS_Customer. i have put one button control for all row in ...
1
vote
2answers
840 views

Building an enterprise CRUD application with WPF and EF CodeFirst

I am building a WPF CRUD application, most of the application functionality is centered around DB operations, and i find my self doing the same thing over and over again. define a view with input ...
0
votes
2answers
76 views

Entity Connection in a Modular Prism Application

Connection String Meta : res://Xz.Business.xModule/Model.RecordzModel.csdl| res://Xz.Business.xModule/Model.RecordzModel.ssdl| ...
0
votes
1answer
516 views

Connection String in a EF general DAL assembly

The Structure of the project : There is a modules folder which I need to add the database and make the repository just there, Other modules and assemblies could use that. New : Changed it to previous ...
2
votes
1answer
240 views

Is there a better way to implement model validation with Entity Framework+IDataErrorInfo than this?

Currently, I have this : Generated model partial class by entity framework My own partial class of this entity implementing the IDataErrorInfo interface This works, however : is there anyway I ...
0
votes
1answer
109 views

Prism EntityFramework Mef Partial Class Context not generating table

I have a Prism project with several modules. Using EF code first for generating the database. I am trying to build the context using partial class. For each module will have its partial class context ...
1
vote
2answers
483 views

WCF RIA EntityQuery returns null for Foreign Keys

I'm following a tutorial on Silverlight and Prism, where WCF RIA Services are uses to access the Northwind database through an ADO.NET Entity Data Model. In the Northwind database, there is a table ...
-1
votes
1answer
137 views

Infrastructure for Project Using Prism, RIA, EF

I want to create an infrastructure for a Silverlight project using Prism, RIA, EF The main structure of my project is as follow: Silverlight: Infrastructure Module A Module B Shell Web: ...
2
votes
1answer
820 views

Prism and Entity Framework

I've seen in several examples, each module contains a folder called Model, and all of them are independent. I mean the module A has no the same model classes than Module B. I've implemented my ...
2
votes
1answer
274 views

Entity Framework code first adding models from other projects

Normally one would write its model classes and create a DbContext with several DbSet's to the corresponding modelclasses to create the database in EF code first. The Prism library allows you to ...
3
votes
2answers
5k views

CanExecute Logic for DelegateCommand

Update: The focus became MVVM instead of the actual question so I'm updating it. I'm having a problem with CanExecute for DelegateCommand. It doesn't update before I call RaiseCanExecuteChanged, is ...
0
votes
1answer
381 views

WPF + Prism + EF outside Visual Studio Error

My app was built on .NET 4.0 with WPF, Prism, Entity Framework There are 1 exe (the app), 1 exe (the app config - simple app to restore db, no referenced dll no prism and no EF), and several ...
0
votes
2answers
367 views

WPF Hierarchial Treeview Multbinding Mixed List Problem

I'm having a tough time solving this simple issue : I am using a treeview with HierarichalDataTemplate to show an hierarchy of two entities : Organization and Unit. The Organization has a many to ...
0
votes
1answer
606 views

WPF Cloned/Detached object edit problem - what is the standard?

I am using an ObservableCollection to wrap some of my generated entity framework objects. When the user wants to edit some values , i am opening a popup windows that contains fields, and when the ...
2
votes
1answer
1k views

WPF Prism Entity Framework repository

I am building a WPF application using the PRISM guidance, I want to use the Entity Framework 4 for a data repository. I have previously developed a Silverlight app, using Prism and WCF RIA Services ...
1
vote
1answer
1k views

WPF and ADO.NET EF - error part II

I have added the connection string to the App.config of a main executable in my wpr, prism application and I get the following error: System.TypeInitializationException was unhandled Message=The ...
0
votes
1answer
161 views

WPF Composite - Expose EF model to all modules

I have an application that uses WPF Composite, and I have an issue. I've got a big database that is attached to the application and I need it exposed to different modules as part of the application. ...