Thanks to Urril and Remus.
I am making changes to the Entity Framework as shown below:
protected override void OnModelCreating(DbModelBuilder modelBuilder) { modelBuilder.Entity<StationMapping>().Property(x => x.AssignedGrossBudget).HasPrecision(35, 15); }
And for SQL BulkCopy, I added a data type as suggested by Remus.
SpotLookupTable.Columns.Add(new DataColumn("GrossBudget",typeof(decimal)));
Now it works, and there are no losses (or insignificant).
Greetings
user2739418
source share