690 likes | 804 Views
Switch on the LightSwitch. Gill Cleeren Microsoft Regional Director / Silverlight MVP Ordina Belgium www.snowball.be - @gillcleeren. Glad to meet you!. Gill Cleeren Microsoft Regional Director MVP Silverlight .NET Architect @Ordina (www.ordina.be)
E N D
Switch on the LightSwitch Gill CleerenMicrosoft Regional Director / Silverlight MVP Ordina Belgium www.snowball.be - @gillcleeren
Glad to meet you! • Gill Cleeren • Microsoft Regional Director • MVP Silverlight • .NET Architect @Ordina (www.ordina.be) • Speaker (TechDays, DevDays, NDC Norway, Spring Conference UK, SQL Server Saturday Switzerland...) • Visug user group lead (www.visug.be) • Author (Silverlight 4 Data and services cookbook) • www.snowball.be - gill@snowball.be - @gillcleeren
Agenda • Introduction: what and why LightSwitch? • Part 1: The basics • Data • Screens • Queries • Small demo • Part 2: Deeper dive • More on data • More on screens • More on queries • Writing code in LightSwitch • Security in LightSwitch • Deploying a LightSwitch application • Extending LightSwitch
Introduction What and Why LightSwitch?
Not everyone is a developer... This guy at least looks like one...
Developers like working fast as well This is not a Mac...
What is LightSwitch? An easy way to build business apps for desktop and cloud applications
The LightSwitch Development Experience At this point, we already have working app (SL, MVVM, RIA Services)
Part 1: The basics
Basic #1: Data • Data is the base of our application • LS allows • Connecting to existing data sources • Newly created tables • Creating relations between tables • Even in one or more databases • Based on data, LS will do • Field validation • Transactions processing • Concurrency checking
Basic #1: Data • LS can connect to • Existing SQL Server data base • SharePoint list • WCF RIA Service • LS has an internal database as well, used for • Internal setting storage • Custom entities • LS allows changing internal fields, external can’t be changed
Basic #1: Data • LS can create relations between data items • If items are in internal database • Doesn’t work between 2 external items • Works between 2 different types (internal and SQL Server for example)
Basic #2: Screens • Screens allow us to display data • A LS app is made up of screens (which may seem logical) • Creating a screen is done by: • Selecting the type of screen you want • Selecting the data you want • Have LS generate it for you • These screens can be tweaked: • How they look • What features they offer • What commands they allow • ...
Basic #2: Screens • Types of screens that exist in LS: • New Data Screen • Search Data Screen • Details Screen • Editable Grid Screen • List and Details Screen • Your own!
Basic #2: Screens • Appearance of screens can be altered: • Using the Screen Designer (Visual Studio) • Customization Mode Screen (Run time, sends back the changes to Visual Studio)
Basic #3: Queries • A query in LS returns data that matches some criteria • Return all products in selected category • LS has internal query designer • A query becomes part of the model • Can be used to create (part of) screens from
Part 2: Deep Dive into LightSwitch
Formatting data • The Entity Designer is used to create and format data items • Cool stuff such as adding space in camel-cased words • Business types are a layer on top of “normal” data types • Applies default validation • More cool stuff such as default domain on Email field • Summary properties • Can be a “computed property” • Requires coding • IDs are int by default • Fields can have a choice list as values • We can decide whether or not we want to show a data item • Custom validation is done by code
Sorting and Filtering data • For this, we need to change/create a query • Can be created specifically for a screen or on entity level to be used throughout the application (global query)
Types of data • Data can be mixed between • Local (internal) data • External data • Relations can be created between • Internal and internal • Internal and external • LS can’t change an external model • Links to internal are visualized as dotted lines • External data is linked through Foreign key • This doens’t support transactions
Coding the data • LS generates objects and members that describe our data • Customer table Customer entity
Coding the data • Application • Top level object • Allows access to objects within the app • Can be used to retrieve active user • Data Workspace • DW is top level for all data-access within app • Contains property for each data source • Default: ApplicationData • External: XXXData
Coding the data • Data Source • Object per data source in application • Members contain entity set properties and query methods • Entity Set returns collection of entities • Query methods gets results of a query • <Entity Name>_Single • <Entity Name>_SingleOrDefault • EntityObject • Is generated for each entity in an entity collection • Contains members to delete or update an entity • Can be retrieved by calling query method that returns an entity
Types of external data • LS can connect with • SQL Server Database • WCF RIA Services • SharePoint List • OData • Not native, through workaround • ...
Screen Designer • LS has no drag and drop interface! • Screen Designer does the job • Can be used to • Add/remove items from a screen • Add buttons • Add items • Add custom controls • Change positionof items • ...
Screen designer at runtime • Screens can be edited while running in the debugger • Changes are sent back to Visual Studio • Gives preview including data
Master-detail • On one or more screens, we can easily create an editable master-detail functionality • Start with a search screen • Create a detail screen • Add the detail property as a summary on the search screen • Clickable to detail • On the child, include a summary back to the master This is easy to work if the user has many screens open
Query designer • Visual design of queries • Filters • Sorting • Parameters • Not everything is possible • We can code thequeries • Count(), Sum()... • Navigating properties
Code in LightSwith • Code is required for • Business rules • Validation • ... • LS has normal code editor (C# or VB, IntelliSense, Silverlight...) • Most code will be in default methods • Entities • Queries • Screens • <ScreenName>_CanRun() can be used to check permissions on this screen from code
Data events • General methods that are run when data is created, deleted, or modified. • Access control methods that are run when data is created, deleted, or modified. • Query methods that are run when a data source is queried. • Query access control methods that are run prior to a query executing. • Data source methods that are run when a data source is saved to. • Property methods that are run when a property is modified.
Screen events • Button methods that are called when a button is clicked. • General methods that are called when data is loaded or saved, or when a screen is closed. • Access control methods that are called to verify if a user has permission to perform a task. • Collection methods that are called when a collection is modified.
Code and screens • We have access from code to change screens • Hide/show/enable elements • Set default values from code
Authentication in LightSwitch • 3 options in beta 2: • No authentication • Forms authentication • Windows authentication • Specific user API built-in • Available after deployment to user specified during deploy • SecurityAdministration
Permissions in LightSwitch • Securing an application starts with defining permissions • Developer must create these • In code, we can then check the permission • Can be granted for debug mode
Deployment options • Desktop client • 2-tier deployment creates an application that runs on the end-user’s Windows desktop; the database and server components run on a networked computer. • Desktop client • 3-tier deployment creates an application that runs on the end-user’s Windows desktop; the database and server components run on a server that is running Internet Information Services (IIS) or on Windows Azure. • Browser client • 3-tier deployment creates an application that runs in the end-user’s web browser; the database and server components run on a server that is running IIS or on Windows Azure.
Desktop, 2 tier deployment Silverlight 4 Out-Of-Browser App .NET Framework 4.0 All LightSwitch Components (DLLs)
Desktop, 3 tier deployment Clients can be on the Internet or same network Silverlight 4Out-Of-Browser App (Office Integration possible) Internet Information Server (IIS) NET Framework 4.0 LightSwitch Middle-tier components
Browser, 3 tier deployment Clients can be on the Internet or same network Silverlight 4Browser App Internet Information Server (IIS) NET Framework 4.0 LightSwitch Middle-tier components