How to hide SQL Server database structure - asp.net-mvc

I need to deliver ASP.NET MVC application to client. It uses a SQL Server database.
Is there any way that I hide the database structure from users? They will be admins on server and do installation.
Thanks

Related

Publish ASP.NET MVC app with SQL Server database to free Azure account

Just want to know that I have my ASP.NET MVC application and related SQL Server database. I have signed up for a free Azure account.
I want to know if I can publish my app and database to Azure with this free account. The purpose of that, I want to check how the things are working properly and also since I working from home, selected user's want to see the progress of my project.
you need to have paid subscription for SQL server feature. Try finding SQL server express also know that SQL server will separately require you to pay SQL server license key. I would suggest to look into free SQL server hosting accounts instead of directly using Azure SQL server.

Can push data to SQL Server database from kaizala data

Is it possible to store kaizala data in a SQL Server database and how to integrate kaizala with SQL Server. If any way to do this kindly guide to me.
After raising the case to Microsoft right now no functionality available to access the web service and push data to server.

Store UmbracoIdentity data in SQL Server

I have implemented Umbraco using UmbracoIdentity for membership and everything was going fine until I deployed my solution to an Azure Web App. On azure I am getting permission errors because UmbracoIdentity is using a SQL Server CE database stored in the App_Data folder.
For reference the error I am getting is:
Exception type: SqlCeException
There is a file sharing violation. A different process might be using the file. [ ...\wwwroot\App_Data\UmbracoIdentity.sdf ]
My Umbraco data is being stored in an SQL database and I would like to store my UmbracoIdentity membership data here as well. I would appreciate any help in how to setup SQL Server as the user store for membership data.
You need to implement the IExternalLoginStore.cs interface and then configure the application to use it. It should be fairly simple to implement as you can use the SQL Server CE implementation as an example. I've done one for Azure Table Storage - you can check the Readme at https://github.com/alindgren/UmbracoIdentity.AzureLoginStore to get an idea of how to configure the app to use a custom external login store (which for me was the least obvious part).

Database change needed for hosting over Azure

I've developed a product for my customer using ASP.Net MVC 3 and SQL Server 2008 R2. My customer wants me to host it over Azure. The access will be given to my customer's clients.
I found many posts talking about "NO CODE CHANGE REQUIRED FOR HOSTING OVER AZURE" But my questions is
My customer's client's will have there own set of data, how that will get mapped? My current application, if hosted in premise will serve it's purpose to the fullest. What if I need to use the same schema for 100 clients OVER AZURE? Do I need to database schema to address say 100 clients?
Thanks
VJ

Grails: Using SQL Server 2005 with Grails

We have a requirement where a Grails application is required to connect to an external SQL Server 2005 (i.e. client's database server via a linked server). Our grails application will have its own SQL Server database instance for user authentication (so will mostly have only one domain class) and then it needs to connect to the external SQL Server database to fetch (only SELECT permission provided) data from 10 or 15 tables (out of 250 tables available) and show it the grails application.
I would like to know would be the best approach to take in this scenario.
Thank You.
Jay Chandran.
You can use the http://grails.org/plugin/datasources plugin and configure the external server as a read-only datasource to ensure that only reads are performed. If you don't want to map domain classes on that server you can use groovy.sql.Sql to execute SQL queries.

Resources