0
votes
1answer
12 views

Function import with EF and Oracle

When trying to import a stored procedure from Oracle 10g into Entity Framework 4, I get the following error: ORA-12154: TNS:could not resolve the connect identifier specified Here are some ...
0
votes
0answers
23 views

Binding SilverLight Treeview From ViewModel Using Entity Framework

I've got a database structure similar to this: Project ProjectID(pk) ProjectName ProjectFile ProjectId FileId(pk) Notes I have to bind a silverlight treeview the Parent should be the ...
0
votes
0answers
21 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
38 views

DataContract doesn't work after publish into web site

I tried to solve by myself, but... Looks like I need help from people. I have Business Silverlight application with WCF RIA and EntityFramework. Access to Database I get via LinqToEntites. Common ...
0
votes
0answers
54 views

Include attribute on parent metadata class seems to get ignored when metadata class created for derived class

Our application has SQL Server database with EF5 over the top of it. Then using WCF RIA Services to communicate with our silverlight 5 client. So at present we have for example the following class ...
0
votes
0answers
79 views

Silverlight RIA Services related entities loading on server but not client

I have an extenal class library with my entities in it. In the Silverlight hosting project I have a domain service class exposing those entites to the silverlight app. When I query for an entity ...
0
votes
1answer
157 views

Silverlight enabled WCF Service and Entity Framework 504 issue

I'm building a Silverlight MVVM template and and am getting stuck with the WCF Service returning and Entity Object. Here's what I did: Using Entity Framework on the server side Created a small test ...
0
votes
2answers
63 views

Silverlight Plug-In crashed without error

this is a headache for me to complete my project. I had done my project in Silverlight5 with entity framework. If i run my project in localhost means it worked fine.. but after published my project in ...
0
votes
1answer
33 views

Silverlight, WCF Ria, EF, flow

Can someone please explain to my how the flow is when i have a Silverlight Application that uses WCF Ria and Entity framework. So I better understand where to secure the transport of information. I ...
0
votes
1answer
75 views

EF ObjectContext returns always “Closed” connection state

I need to know when the database connection (via WCF RIA + EF) is opened, when is closed. But in my DomainService (at web side) method: return this.ObjectContext.Connection.State.ToString(); Always ...
0
votes
0answers
65 views

Strange InvalidOperationException when updating entity with RIA Services

I'm working with EF4.1, RIA Services and Silverlight. I'm having a somewhat bizarre problem in an update scenario. The domain model is quite simple; it deals with Requests and Persons. They have a ...
1
vote
0answers
99 views

How to use Postgresql Database in Silverlight application?

i'am trying to use Entity Framework with Postgresql Database in my Silverlight application ,for that i am using npgsql data provider . fowlowing this link i registered Npgsql and Mono.Security in the ...
-1
votes
1answer
68 views

Silverlight validation on multiple objects

I'm using Silverlight + EntityFramework + RIA Services in a business application. The underlying database tables include the Humans table and the HumanAddresses table. Every human can have one or more ...
0
votes
2answers
170 views

Strategy for Silverlight and Entity Framework solution

I am new to Silverlight and am developing an ASP.NET web application that requires a Silverlight project to record webcam audio/video streams. The solution consists of a library project containing ...
0
votes
2answers
141 views

Listbox not shows the updated/ newly added value in silverlight mvvm with Entity Framework

In my Silverlight5 with MVVM pattern project I have one listbox. I load the data to listbox using entityframework. Initially all data are load into listbox without fail using entity framework model. ...
0
votes
1answer
258 views

Is it possible to set the ObjectContext.CommandTimeout in web.config?

I am working on a Silverlight project that uses Entity Framework. The service time-outs when the query takes a few seconds and should return something like 3MB+ of data. I have found that I can put ...
0
votes
0answers
40 views

Selected item to be binded in next page combobox in silverlight MVVM?

I have the following scenario in my silverlight project with MVVM architecture. I have 2 pages named SelectEmp, ChangeEmp and i have the combobox control on both pages. I am using Observable ...
0
votes
1answer
215 views

Parameter xxx of domain operation entry xxx must be one of the predefined serializable types

I get this webservice error sometimes on a SL5 + EF + WCF app. "Parameter 'role' of domain operation entry 'AddUserPresentationModelToRole' must be one of the predefined serializable types." here is ...
0
votes
1answer
200 views

Silverlight + Entity framework code first + DomainService + partial class

I have silverlight project with entityes thisis my table class public class OrderHeader : INotifyPropertyChanged { public string OrderId{get;set;} } And I have public class DataBaseContext : ...
0
votes
1answer
130 views

Entity Framework database first and RIA services navigation properties

I've inherited a Silverlight and RIA services project and it uses an EF4, database first DAL. In the past when I used RIA services (the only other time I used it) it was with NHibernate so we had to ...
0
votes
1answer
126 views

Get value from codebehind to another view in Silverlight MVVM

In my project(Silverligth with MVVM pattern) I have 2 views (Customer and CustomerDetails pages). In Customer page I have one ListView and one Button for open the selected projects that are already ...
1
vote
1answer
41 views

how to get the data from delete trigger?

Suppose I have a table tab(ID, Name, ...) In delete trigger, I can get the delete data from temp table deleted like declare @Name varchar(50) select @Name = Name from deleted Suppose I have a line ...
1
vote
1answer
110 views

How to know the order of update with Domain context SubmitChanges?

Suppose I have 3 entities generated from EF, say tab1, tab2 and tab3. In SL app, I call SubmitChanges to save data to DB, all changes will be process by WCF and EF automatically. Question is: how ...
2
votes
1answer
200 views

DomainDataService (ViewModel) loading an entity via a string name

So I'm attempting to dynamically load my domain data service where the table name is the string ... Here's what I've got so far: Normally I'd load like this: ...
0
votes
1answer
234 views

how to checkall Checkbox in datagrid Silverlight mvvm?

In my silverlight5 and MVVM project, I have one doubt. I have one Datagrid control and I load some details of a customer. My Datagrid structure is as follows. [CheckBox] | CustomerName | ...
0
votes
1answer
201 views

How to achieve multiple Radiobutton databinding in silverlight mvvm?

I have a question about my Silverlight5 and MVVM pattern .. In my usercontrol window I have 2 radiobutton controls and I have grouped together the radiobutton controls using GroupName="sex". Syntax ...
0
votes
1answer
104 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 ...
0
votes
1answer
40 views

Self-referencing table entities not loaded in client

I have a table Test with a foreign key to itself. In metadata class I have [Include] Test Test2 { get; set; } In a service class: return this.ObjectContext.Test.Include("Test2") I checked that ...
0
votes
1answer
33 views

How to get the ID from table by passing Name in Entity Framework in Silverlight mvvm?

In my Silverlight with MVVM project, I'm using Entity Framework. I have one table named Customer, with fields CustomerID, Username, age. I have inserted one row programmatically. Here the ...
0
votes
0answers
53 views

RadGridView Binded with ObservableCollection of Entities

Hi I binded the telerik Gridvew with ObservableCollection of Entities. Its working perfectly. but I have binded two radio button with Entity Property. When i change the selection of radio ...
0
votes
0answers
102 views

How to add Pgsql dbprovider?

i'am trying to use Entity Framework with Postgresql Database in my Silverlight application ,for that i am using npgsql data provider . fowlowing this link i registered Npgsql and Mono.Security in ...
0
votes
0answers
31 views

Error when start silverlight project

Error 1 Failed to get the MetadataWorkspace for the DbContext type 'RIAServicesLibraryTask.Web.Models.CityDbContext'. RIAServicesLibraryTask (RIAServicesLibraryTask\RIAServicesLibraryTask) I ...
0
votes
0answers
131 views

Invalid Column Name on a stored procedure (Silverlight WCF)

I have a Silverlight 4 apps that use the entity framework with WCF RIA. All of a sudden a few (I think 3) stored procedures stop working. Every users reprot the same problem All of them has the ...
1
vote
1answer
354 views

Silverlight 5 - entity framework 5 and domain service exclude unsupported Geography type

I'm very new to Silverlight (this is my first test app) and I'm working through some walkthroughs on setting up a domain service for a silverlight 5 app that uses the Entity Framework. I have a ...
0
votes
1answer
477 views

The underlying provider failed on Open

I'm using EntityFramework with Windows Azure platform. It works so well in LOCAL mode, but when I'm trying to run my Silverlight application on Web. I get an error: The underlying provider failed ...
0
votes
1answer
137 views

DbGeography + entity framework 5 + Silverlight + DomainService

I have create Entity with DbGeography and add it to my Domainservice. But my SL app didn't see this filed. How can I use DbGeography in SL5 app?
1
vote
1answer
475 views

Ria Services : Use Entity Framework Code First Classes From Another Project

I have a solution with this structure : ProjectName.Domain ==> contains POCO classes (EntityFramework code first classes) ProjectName.DataAccess ==> contains DbContext and EntityFramework ...
5
votes
1answer
1k views

EF5 Code First and RIA Services Silverlight “Object reference not set to an instance of an object” error building client

I am working on setting up a new project using Code First for entity framework 5 in silverlight using RIA services. I have created a test project due to some issues I have encountered and will post ...
0
votes
1answer
247 views

Bind data from WCF Ria Services to data grid Entity Framework Code First

I've created simple POCO class like this : public class Entity { public int Id { get; set; } public bool IsActive { get; set; } } And this is my EF DbContext : public class ...
0
votes
1answer
87 views

Silvelight&RIA Services&Entity Framework problems with partial classes and complex types there

I'm using RIA Services with Entity Framework and Silverlight as the client Application. I've got some custom properties for EF Entity through partial class. There is a field in Database with XML type ...
0
votes
0answers
37 views

HowTo use record of same Table in two DomainContexts?

i have following problem in my Silverlight(5) RIA project. For performance-reason i have to package my serverside queries and the send it per invokeOperation as byte[] to the client. All is working ...
0
votes
0answers
86 views

How to check get list code in LightSwitch 2011?

LightSwitch automatically generates most of the code. I was wondering anyone knows how to check the get list code in LightSwitch 2011 ? Where is it located ? Root Issue: The reason I'm looking for ...
0
votes
1answer
33 views

Entity framework returns null when hosted

I have a silverlight application where when I run the application I read the database and populate the results in the combobox, but when I publish it on the server(IIS) the it returns me a null, I ...
0
votes
1answer
116 views

How can I have a generic repository to load the data asynchronously with EF?

I'm using Entity Framework in my Silverlight 5.0 application with RIA Services. I realized that to get the data from the client side, you have to get that data from an event when the async process is ...
0
votes
1answer
92 views

Is there a way to compile entityframework dataannotations in silverlight?

I am using MVC WebAPI to power a silverlight app. The POCO objects are shared between the MVC and the Silverlight. All the POCOs are in a .Net class library and I created a Silverlight class library ...
1
vote
1answer
96 views

Add property to model object silverlight

I would like to know how to add a property to an entity object from my model. [EdmEntityTypeAttribute(NamespaceName="MyObjectModel", Name="MyObject")] [Serializable()] ...
2
votes
1answer
108 views

Alternative to Interface w/ Ria Services

All of my Entities will have the following properties: Employee CreatedBy { get; set; } Employee ModifiedBy { get; set; } DateTime CreatedDate { get; set; } DateTime ModifiedDate { get; set; } This ...
0
votes
0answers
65 views

Complex generated T-SQL with RIA and EF

I am new to EF, RIA-services and Silverlight and am creating a new complex project with these technologies. I have the following problem. I have 3 tables Contracts Companies Supervisors In the ...
1
vote
2answers
453 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 ...
0
votes
0answers
103 views

Add/Remove Item to different type of ItemsSources at runtime dynamically

Add/Remove Item to different type of ItemsSources at runtime dynamically Hi all, I want to ask interesting two questions about add and remove item dynamically from different type of sources. Actually ...

1 2 3 4 5 6