Microsoft Visual Studio LightSwitch is a rapid application development tool for creating data centric Silverlight applications.

learn more… | top users | synonyms (5)

2
votes
2answers
20 views

Lightswitch - Hiding Columns

FindControl seems to only reference the name of the grid, not the column name inside the grid. I can't find any documentation or examples regarding FindControlInCollection either. I don't have any ...
0
votes
0answers
76 views

Getting Lightswitch to work on AppHarbor

Was anybody able to get Lightswitch working on AppHarbor? Would like to try out free hosting for my lightswitch application first. The closest I got was this: ...
1
vote
1answer
335 views

How to jump to an HTML page from Lightswitch

In Silverlight, I can use System.Windows.Browser.HtmlPage.Navigate("url"); to navigate to an HTML page. I'm trying to do the same from a Lightswitch application, but I don't know how to get a ...
0
votes
1answer
25 views

Lightswitch v1 Desktop Application doesn't work on 64bit client

I have made a Lightswitch v1 (2011) Desktop application on Visual Studio 2010 Professional. My OS is 32 bit Windows 7 Professional. The application connects to an SQL Server 2005 database, using SQL ...
2
votes
2answers
60 views

LightSwitch v1 shows red X and unable to load data

I have made an application using Visual Studio LightSwitch 2011 (v1) running on Visual Studio 2010 Professional. It is a desktop application, and I use SQL Server Authentication to connect to the ...
0
votes
1answer
29 views

One to Zero…One Master Detail in Lightswitch HTML Client

Creating a master detail with this relationship: Parent (1) ---> Child(0 or 1) The details page shows the child record greyed out. I realise this is because Lightswitch doesn't know if it should ...
0
votes
1answer
34 views

Lightswitch IIS 7.5 Deployment - GetAuthenticationInfo

I am having an absolute nightmare with the "Load operation failed for query 'GetAuthenticationInfo'. [HttpWebRequest_WebException_RemoteServer]" error when deploying my applications to a new server. ...
3
votes
4answers
2k views

Does Microsoft LightSwitch require Silverlight on the client?

Microsoft Lightswitch is a Rapid Application Development environment currently in beta 2. It will be part of the Visual Studio family. There seem to be several different ways to deploy LightSwitch ...
0
votes
0answers
32 views

Saving images in Azure Blob Storage using Lightswitch 2012

I have a lightswitch application which currently stores all data in SQL Azure - including images. But I would like to keep the images separately in Azure Blob Storage and all non-binary data as it is. ...
1
vote
0answers
38 views

LightSwitch HTML Client - How to add global menu

Is it possible to add global menu items like in desktop client LightSwitch? Or something simular to it... How, or better question is, where can I do it? Ty
1
vote
0answers
30 views

LightSwitch HTML Client - Select Modal Picker value from code

I would need to select item in a Modal Picker from JS. I got value in DOM. Can somebody give me a hint or example how to do it? Thank you for your time!
0
votes
1answer
29 views

WCF RIA and LightSwitch HTML - item add/edit

I'm new to WCF RIA and LightSwitch HTML so I'm probably missing something. I'm making small web app for smart phones. My start screen got list of items that are retrieved via WCF RIA service. Data ...
0
votes
1answer
138 views

How to solve the “Could not determine storage version; a valid storage connection or a version hint is required” in Microsoft LightSwitch?

At the time of updating the database in LightSwitch. I found an error Could not determine storage version; a valid storage connection or a version hint is required in Visual studio ...
5
votes
0answers
103 views

LightSwitch related data requests optimization

I have a SQL Server 2008 table with a lot of foreign keys, when opening this in a screen it takes very long time to load all related data, like 10 seconds... Here's a chart from Fiddler showing ...
0
votes
0answers
39 views

SignalR & Lightswitch: Subscription via “Hubproxy.On” does not always fire when deployed

I Successfully implemented SignalR in our 3tier Lightswitch Application. It is Hosted on one of our Servers with IIS6. Invoking Server methods works as expected. A Lot of those methods will give ...
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
0answers
69 views

Kendo Grid with Lightswitch HTML

AM attempting to use Kendo Grid with Lightswitch. I can get data binding working with local data. When I bind to lightswitch data, nothing shows up. Code looks like this ...
0
votes
0answers
31 views

Is there a way to tab (keyboard) navigate to add more than 20 properties in a table?

When adding properties to a table I just tab into the next one and it works fine up until there are 20 properties. Once I need to add property number 21, I have to use the mouse to scroll down and ...
0
votes
2answers
47 views

Lightswitch 2012 Update 2. Cannot edit data

I had a functioning Lightswitch application built with VS2012RTM. It was interacting with a RIA service backend. Recently, the RIA Service assembly was 'upgraded' to use DbContext instead of ...
0
votes
1answer
45 views

LightSwitch - bulk-loading all requests into one using a domain service

I need to group some data from a SQL Server database and since LightSwitch doesn't support that out-of-the-box I use a Domain Service according to Eric Erhardt's guide. However my table contains ...
0
votes
1answer
52 views

Reporting within lightswitch web application

Currently I am working on a tool using Lightingswitch. It is a pretty straightforward tool and will be deployed as a webapplication on either Windows Azure or Amazon cloud service. Depending on the ...
0
votes
0answers
17 views

“Save operation failed invalid MIME part type” in Lightswitch HTML Client

When trying to save a record in VS Lightswitch HTML Client I get this error pop up. "Save operation failed invalid MIME part type" It does it in the HTML Client but I don't know if it's exclusive ...
0
votes
1answer
47 views

Populating Application Tables from SQL Tables in Visual Studio Lightswitch

I've written a separate plug-in application that log users activity in our office using a specific piece of software to a SQL database. The plugin logs when the user opens the application, their ...
0
votes
1answer
28 views

Opening Same Screen in Lightswitch

I have a screen called Customer and has a parameter Id. To open a screen through code I am using: Application.ShowCustomer(customerId); I am calling it in Customer Screen, but nothing happens. I ...
0
votes
1answer
1k views

Create login page in LightSwitch ( VS2012 )

I'm trying to create login page using this tutorial, but the tutorial not for Visual Studio 2012. Some of the steps could not been found in Visual 2012. Appreciate if anyone could advice or share some ...
0
votes
2answers
110 views

How to set a property value to auto increment in visual studio lightswitch 2012

i want to set a property value in a table to default auto increment,but their are no options to do so in lightswitch2012 to my knowledge which is given that i recently started learning ...
0
votes
1answer
36 views

Autofill username in Add data screen in lightswitch

I have a add data screen. There is a entity Username (which is foreign key refrence from user table). So Light-switch is showing auto-complete box. How can i restrict that only Current User-name is ...
1
vote
1answer
52 views

Foreign/related data with WCF RIA Domainservice in LightSwitch

I have a LightSwitch application where I need to aggregate data and being able to edit it. I followed Eric Erhardts guide which works fine. Then in the DomainService class I added this to make updates ...
0
votes
1answer
43 views

Adding new row to LightSwitch combobox

I'm having problem with LightSwitch (VS 2012 version, Silverlight client) screen design. I have following data model: Agent table Training table Participant tablehaving 1-to-many relationship with ...
1
vote
1answer
237 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
1answer
44 views

Form Authentication and Active users in LightSwitch Web App

Is there any way i can trace when user has Login (i.e. insert time of login in a log table) and how many users are currently active. I am using Form Authentication. I have search but i got stuff ...
0
votes
2answers
40 views

How can I export to excel when creating an application that works in the browser for Lightswitch?

How can I export to excel when creating an application that works in the browser for Lightswitch?
0
votes
1answer
48 views

Geocoding in Lightswitch

I am writing an application for a delivery company. I have an address entity that I would like to geocode addresses and save the lat and longs in sql servers for routing. I am a newbie and I don't ...
0
votes
1answer
62 views

Rewrite “group by” LINQ without grouping

I'm developing a Lightswitch app and need to do view some aggregated data in a screen. However LightSwitch doesn't support "group by" and "sum", so my question is if this could be rewritten without ...
1
vote
1answer
38 views

LINQ query works agains SQL Server but not Entity Framework/LINQ to SQL

I have a LINQ query which works fine when I test it in LINQPad agains my SQL Server database, however when I test it against my Entity Framework context (which is required in my LightSwitch .NET app) ...
0
votes
1answer
68 views

Select item in Lightswitch grid when click on custom control

I have Lightswitch app and i have screen with grid there, in each row i have my custom control - image with link to selcted item detail screen , problem is that if i click on that control it doesnt ...
0
votes
1answer
165 views

LightSwitch HTML Client to automatically run queries without refreshing entire page

In Lightswitch HTML client we have created a screen to display the work in progress for a particular business processes. This is to be displayed on a big screen, much like when you go to Argos to ...
0
votes
2answers
64 views

Find Control in collection - event ControlAvailable Disabled

In my lightswitch app i need to add a small image control to every row, when clicking on it , it should send you to a detail screen. I made the silverlight control and added it to the lightswitch app. ...
0
votes
1answer
72 views

Best Practices for Creating or Enhancing LightSwitch Projects

I'm researching the use of Microsoft LightSwitch as a target for an automated UI/code builder. The application builder might create LightSwitch solutions and projects, and might create or modify ...
3
votes
2answers
131 views

Save binary file to DB

I know there are many threads on the subject, and I have try to implement (translate) this one into C# from VB. Table fileContainer = {string FileName, binary File} Here is my try: partial void ...
0
votes
0answers
48 views

how to set default property value as the id of the table in lightswitch 2012

i am trying to set a default property value in a table as the value of the auto genearated table id. Table name : Customer id->primary key ,auto generated CustomerNo->(to be set with value of id) ...
0
votes
1answer
92 views

How do I create a one-to-one relationship in WCF RIA Services for LightSwitch?

I've come a long way in my understanding of WCF RIA Services and Microsoft LightSwitch, but now I'm at a loss. I'll use Animal and Dog as examples. I actually want a zero-or-one-to-one relationship, ...
0
votes
0answers
22 views

Lightswitch getting 401 in Trace.axd after log in

I have an Lightswitch OOB Desktop application. What reasons could there be for getting a 401 error in my trace.axd after a user has logged in? It seems that any data related operations cause a log on ...
0
votes
1answer
21 views

How can we resolve “Cannot Edit an Item Outside of the transaction” in LightSwitch?

Error: How can we resolve "Cannot Edit an Item Outside of the transaction" in LightSwitch? Solution: Please your solution and reopen it. for more detail please click here.
2
votes
2answers
104 views

How to call stored procedure in preprocess query

I got a stored procedure that returns all data I need to view in a screen. My question is simple, how do I call the stored procedure, with a parameter? partial void Query1_PreprocessQuery(int? ...
1
vote
2answers
1k views

lightswitch automatic refetch of entity after updated

In a mssql database a trigger is updating a field in a table after some other field from the same row is being updated. In a lightswitch application after the update is executed the values updated by ...
4
votes
1answer
116 views

LINQ - filter duplicates with condition

I'm developing an .NET application where I need to filter data from SQL Server 2008 depending on a condition. My data structure looks like this: The result should be grouped and sorted by Key. By ...
0
votes
0answers
98 views

Lightswitch - how to define object in LS application for which I can bind UI control in xaml in shell

I need help in order to complete Lightswitch custom shell. I created ShallSample LS extensibility project and I have custom text block in a ShallSample.xaml file which should contain some data from ...
0
votes
1answer
117 views

fill autocomplete box on selecting data in other autocomplete box in Light Switch 2011

i have a table x having two relationship from two tables. One is company having column id and Company. Other is Department having column id company and Department. Again Company is Foreign key in ...
0
votes
2answers
276 views

Lightswitch “Object reference not set to an instance of an object” error

I get the following error when i try to save in my lightswitch application. "Object reference not set to an instance of an object" I have published the application to a different computer. But when ...

1 2 3 4 5 11