Tagged Questions
0
votes
0answers
34 views
Including child entity ADO.net EF, LinqToEntities
I'm trying to get all my child entities to get loaded in the same query as the "master" table, instead of every property loads one by one.
It's an ADO.net database model connected to SQL Server 2008.
...
1
vote
1answer
227 views
Lightswitch is slow, ADO.NET Entity Framework/Domain Service/WCF RIA Service
I'm developing an Lighswitch application in VS2012 with an external SQL Server 2008. I'm using a WCF RIA Service to fetch my data, using these techniques: ...
0
votes
2answers
78 views
ADO.net to Lightswitch issue
I've deploy my database through ADO.net Entity Data Model by executing its diagram output query against my pre-made online database.
My database contains Only Lightswitch supported relations, ...
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 ...
1
vote
3answers
223 views
LINQ for cumulative records
I have two entities called Patients and TelephoneCallsHistory with 1-m Relationship.
The query is below,
The data model is
The following is the sample telephone data
I would like to return ...
0
votes
2answers
999 views
“And” condition in C#/LINQ Query
partial void PrintDocLetter1_CanExecute(ref bool result)
{
if (this.PatientsMasterItem.DoctorsMasterItem != null)
{
var Doctor = PatientsMasterItem.DoctorsMasterItem;
...
0
votes
1answer
802 views
LINQ - An explicit conversion exists (are you missing a cast?)
This is my first LINQ query and I have following error
Cannot implicitly convert type
'Microsoft.LightSwitch.IDataServiceQueryable<LightSwitchApplication.LettersSentItem>'
to ...
1
vote
1answer
134 views
Accessing ADO.NET metadata
I am creating an application that requires extended SQL properties. With the help of a colleague those properties have been appended to my edmx model.
All I need to do now is somehow pull this data ...
