Click here to Skip to main content
15,889,781 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: EF6 and MVC - Models *and* ViewModels? Pin
Nathan Minier25-Oct-17 1:47
professionalNathan Minier25-Oct-17 1:47 
Questionpassword hasher Pin
Member 1347817421-Oct-17 20:38
Member 1347817421-Oct-17 20:38 
QuestionRe: password hasher Pin
Richard MacCutchan23-Oct-17 2:48
mveRichard MacCutchan23-Oct-17 2:48 
QuestionWhat do y'all use for prototyping Pin
#realJSOP19-Oct-17 5:52
mve#realJSOP19-Oct-17 5:52 
QuestionIt's probably just me... Pin
#realJSOP18-Oct-17 2:39
mve#realJSOP18-Oct-17 2:39 
AnswerRe: It's probably just me... Pin
Nathan Minier23-Oct-17 1:25
professionalNathan Minier23-Oct-17 1:25 
GeneralRe: It's probably just me... Pin
#realJSOP23-Oct-17 4:45
mve#realJSOP23-Oct-17 4:45 
GeneralRe: It's probably just me... Pin
Nathan Minier23-Oct-17 6:13
professionalNathan Minier23-Oct-17 6:13 
I'm afraid I can't speak to the designer; I've never used it.

I have, however, used the GUID type for primary keys with EF6, and I don't remember having any special issues with it (unlike prior EF versions). You should be able to declare a POCO like so:
C#
public class Foo
{
   [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
   public Guid Bar { get; set; }
   ...
}

But beyond that, I think I might be able to help in terms of the documentation piece. MVC.NET is largely targeted towards the sort of people that previously used WebForms, so it's more concerned with the UI than what you need right now. I would suggest looking at documentation for WebAPI instead, if you're trying to work on the backend more than the front. The concepts are just about identical, and none of the UI is injected into it. The only real difference is that in MVC.NET you'll usually end up passing the model to a View constructor rather than returning it directly.
"There are three kinds of lies: lies, damned lies and statistics."
- Benjamin Disraeli

QuestionRelated to Table in angular 4 material Pin
Munjal Pandya6-Oct-17 22:18
Munjal Pandya6-Oct-17 22:18 
SuggestionRe: Related to Table in angular 4 material Pin
Richard Deeming9-Oct-17 8:55
mveRichard Deeming9-Oct-17 8:55 
GeneralRe: Related to Table in angular 4 material Pin
Munjal Pandya9-Oct-17 17:25
Munjal Pandya9-Oct-17 17:25 
QuestionMVC Edit form with dynamic dropdown list Pin
desanti23-Sep-17 8:45
desanti23-Sep-17 8:45 
AnswerRe: MVC Edit form with dynamic dropdown list Pin
Richard Deeming25-Sep-17 2:26
mveRichard Deeming25-Sep-17 2:26 
QuestionMVC entity framework web page - How to store logged user in a global variable Pin
desanti22-Sep-17 4:12
desanti22-Sep-17 4:12 
AnswerRe: MVC entity framework web page - How to store logged user in a global variable Pin
Richard Deeming22-Sep-17 4:51
mveRichard Deeming22-Sep-17 4:51 
GeneralRe: MVC entity framework web page - How to store logged user in a global variable Pin
desanti22-Sep-17 5:55
desanti22-Sep-17 5:55 
GeneralRe: MVC entity framework web page - How to store logged user in a global variable Pin
Richard Deeming22-Sep-17 6:05
mveRichard Deeming22-Sep-17 6:05 
QuestionDigital Signatures Pin
Nathan Minier19-Sep-17 7:08
professionalNathan Minier19-Sep-17 7:08 
QuestionLogin form php,mysql,ajax Pin
Dalee1716-Sep-17 14:55
Dalee1716-Sep-17 14:55 
AnswerRe: Login form php,mysql,ajax Pin
W Balboos, GHB11-Oct-17 5:46
W Balboos, GHB11-Oct-17 5:46 
Questionhtml warning Pin
dcof30-Aug-17 12:10
dcof30-Aug-17 12:10 
AnswerRe: html warning Pin
W Balboos, GHB20-Sep-17 2:18
W Balboos, GHB20-Sep-17 2:18 
AnswerRe: html warning Pin
Member 1349103928-Oct-17 12:56
Member 1349103928-Oct-17 12:56 
QuestionScroll Bar in Popup Window Pin
shahbaz shaikh27-Aug-17 3:37
shahbaz shaikh27-Aug-17 3:37 
QuestionHow do I configure dropzone.js? Pin
Member 1307448726-Aug-17 13:39
Member 1307448726-Aug-17 13:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.