Readdy Write  
0,00 €
Your View Money
Views: Count
Self 20% 0
Your Content 60% 0

Users by Links 0
u1*(Content+Views) 10% 0
Follow-Follower 0
s2*(Income) 5% 0

Count
Followers 0
Login Register as User

Welcher Datentyp in SQL Server entspricht bigint in C#

06.07.2021 (👁6861)

Welcher Datentyp in SQL Server entspricht bigint in C#

Umwandlung SQL Server zu C#:

//c#.long=sql.bigint

//c#.int=sql.int

 

 

In Asp.Net Core

        //------------< Region: Fields >------------

        //[Required]

        [Key]

        public long IDArticle_File { get; set; }   //c#.long=sql.bigint

        public long IDArticle { get; set; }      

        public int? FileNr { get; set; }            //c#.int=sql.int

        public int? sizeMB { get; set; }

        public string Description { get; set; }

        public DateTime? dtCreate { get; set; }

        public DateTime? dtEdit { get; set; }

        //------------</ Region: Fields >------------

In SQL Server

IDNote_Image        bigint Unchecked

IDNote         bigint Checked

ImageNr       int      Checked

Description   nvarchar(MAX)       Checked

dtEdit datetime       Checked

dtCreate       datetime       Checked

Width int      Checked

Height int      Checked

geo_location_lat      nvarchar(50) Checked

geo_location_lng     nvarchar(50) Checked

                    Unchecked