Click here to Skip to main content
15,922,894 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionWhere did i get asp.net project in linux with mysql database.? Pin
Tushar Surve 202115-Dec-21 6:11
Tushar Surve 202115-Dec-21 6:11 
AnswerRe: Where did i get asp.net project in linux with mysql database.? Pin
Richard Deeming15-Dec-21 6:22
mveRichard Deeming15-Dec-21 6:22 
GeneralRe: Where did i get asp.net project in linux with mysql database.? Pin
Mycroft Holmes15-Dec-21 13:31
professionalMycroft Holmes15-Dec-21 13:31 
QuestionTwo ReportViewers on the same project Pin
Member 1077312213-Dec-21 1:01
Member 1077312213-Dec-21 1:01 
QuestionRe: Two ReportViewers on the same project Pin
CHill6013-Dec-21 1:09
mveCHill6013-Dec-21 1:09 
QuestionAn unhandled exception occurred while processing the constructor in ASP.NET Core MVC Pin
Alex Dunlop6-Dec-21 7:51
Alex Dunlop6-Dec-21 7:51 
AnswerRe: An unhandled exception occurred while processing the constructor in ASP.NET Core MVC Pin
Richard Deeming6-Dec-21 21:54
mveRichard Deeming6-Dec-21 21:54 
GeneralRe: An unhandled exception occurred while processing the constructor in ASP.NET Core MVC Pin
Alex Dunlop7-Dec-21 7:09
Alex Dunlop7-Dec-21 7:09 
QuestionUse Active Directory for authentication Pin
Joseline Riker2-Dec-21 5:50
Joseline Riker2-Dec-21 5:50 
QuestionIs this data annotation correct for date and time? Pin
Alex Dunlop25-Nov-21 22:26
Alex Dunlop25-Nov-21 22:26 
AnswerRe: Is this data annotation correct for date and time? Pin
Richard MacCutchan26-Nov-21 0:02
mveRichard MacCutchan26-Nov-21 0:02 
GeneralRe: Is this data annotation correct for date and time? Pin
Alex Dunlop26-Nov-21 0:28
Alex Dunlop26-Nov-21 0:28 
GeneralRe: Is this data annotation correct for date and time? Pin
Richard MacCutchan26-Nov-21 0:39
mveRichard MacCutchan26-Nov-21 0:39 
GeneralRe: Is this data annotation correct for date and time? Pin
Alex Dunlop26-Nov-21 0:45
Alex Dunlop26-Nov-21 0:45 
GeneralRe: Is this data annotation correct for date and time? Pin
Richard MacCutchan26-Nov-21 0:56
mveRichard MacCutchan26-Nov-21 0:56 
AnswerRe: Is this data annotation correct for date and time? Pin
jkirkerx28-Nov-21 9:12
professionaljkirkerx28-Nov-21 9:12 
I get what you want to do here, which is to create models to match your database perhaps, so each table has a matching model. But your over thinking this, and don't need that much detail. Keep it simple and flexible at first, and only add detail when needed. For some reason Microsoft likes to capitalize the first letter, and will nag you later about the first letter being lower case.

This is an example model in c# to match a DB table or collection. Your example is a like a model used to present data in the view. Even when presenting data in the view, I would keep that simple as well. You want to craft models as simple as possible, and try to make them as reusable as possible to keep models down in count.
public class PORTFOLIOS
    {
        // standard BsonId generated by MongoDb 

        public string Id { get; set; }
        public DateTime TimeStamp { get; set; }        
        public string Name { get; set; }
        public string Description { get; set; }
        public string CreatedBy { get; set; }
        public string UpdatedBy { get; set; }
        public DateTime UpdateDate { get; set; }
        public string HTML { get; set; }
        public string AvatarB64 { get; set; }
        public string AvatarName { get; set; }
        public string AvatarType { get; set; }
        public string AvatarUrl { get; set; }
        public int AvatarX { get; set; }
        public int AvatarY { get; set; }        
    }
If it ain't broke don't fix it
Discover my world at jkirkerx.com

QuestionCannot establish local connection to SQL SERVER Pin
Alex Dunlop24-Nov-21 23:15
Alex Dunlop24-Nov-21 23:15 
QuestionRe: Cannot establish local connection to SQL SERVER Pin
Richard MacCutchan25-Nov-21 0:37
mveRichard MacCutchan25-Nov-21 0:37 
AnswerRe: Cannot establish local connection to SQL SERVER Pin
Richard Deeming25-Nov-21 1:15
mveRichard Deeming25-Nov-21 1:15 
GeneralRe: Cannot establish local connection to SQL SERVER Pin
Richard MacCutchan25-Nov-21 1:18
mveRichard MacCutchan25-Nov-21 1:18 
AnswerRe: Cannot establish local connection to SQL SERVER Pin
Richard Deeming25-Nov-21 1:19
mveRichard Deeming25-Nov-21 1:19 
AnswerRe: Cannot establish local connection to SQL SERVER Pin
jsc4225-Nov-21 2:56
professionaljsc4225-Nov-21 2:56 
GeneralRe: Cannot establish local connection to SQL SERVER Pin
Richard Deeming25-Nov-21 3:33
mveRichard Deeming25-Nov-21 3:33 
AnswerRe: Cannot establish local connection to SQL SERVER Pin
Alex Dunlop25-Nov-21 9:02
Alex Dunlop25-Nov-21 9:02 
Questioncall a server side Powershell script? Pin
Joseline Riker19-Nov-21 6:44
Joseline Riker19-Nov-21 6:44 

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.