I have an SQL Server 2008 database. All tables having a GUID as the primary key, and they are NOT auto-generated. Rather, I want my code to generate it and pass it in INSERT operation. Some of the tables are having one-to-one or one-to-many relations with other tables.
Is it easy to implement having CRUD operations for such kind of database, where the end-user will not need to worry about GUIDs and all? I searched for tutorials for this, but couldn't find. Can anyone guide me in right direction?
I have MVC 4 in Visual Studio 2010.