hdmark
hdmark
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
I'm changing the data structure of the user model tables , so the edmx would need to be changed as well. That's where I was thinking I could update the ef6 to core3 and use it in both , or just kinda say fuck it, make the changes in both seapatetly and then in 10 years bring the old netfx stuff to core and use the new model priject
23 replies
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
We have a user model project right now that like 6 programs use that are all netfx . The user model project is ef6 with its edmx file and then a bunch of class files with all sorts of custom code . My new priject is rewriting basically an address book so I was using blazor cause I have no desire to write a netfx web forms app from scratch in 2025
23 replies
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
I've never liked orms so I never went too deep in learning them which is biting me in the ass
23 replies
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
Both I guess. I'm not quite sure the distinction tbh
23 replies
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
Ya
23 replies
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
If I cna use core 3 in my new priject, I could use the same code in the old 0rijects for the models
23 replies
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
In this case the rows are people + job title combos kinda . So 1 person could be there 3 times for 3 jobs. Yes I know it should just be 2 tables with a link probsbly but the people above me don't want that... No idea why
23 replies
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
I wasn't sure if I should somehow wrap my new ef core 9 stuff and use it in the framework or do core 3 and migrate or just kinda have all this code in 2 places
23 replies
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
Ya that's why I was thinning ef core 3
23 replies
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
Issue is all of the original code which won't move for years is 4.7 which I didn't think can use core 9
23 replies
CC#
Created by hdmark on 4/24/2025 in #help
Ef core help
The first one that I'm doing is overriding the equals and gethashcode. I guess that could be in a service instead ?
23 replies
CC#
Created by hdmark on 11/20/2024 in #help
Asp.net (.net461, global.asax)
it has both, but in my main project , when i specify output, it goes to bin/ or im used to do bin/debug
4 replies
CC#
Created by hdmark on 11/20/2024 in #help
Asp.net Core bin vs bin/debug
lol okay will do, ill make a new one
100 replies
CC#
Created by hdmark on 11/20/2024 in #help
Asp.net Core bin vs bin/debug
i hadnt thought about that
100 replies
CC#
Created by hdmark on 11/20/2024 in #help
Asp.net Core bin vs bin/debug
that was a good call
100 replies
CC#
Created by hdmark on 11/20/2024 in #help
Asp.net Core bin vs bin/debug
its fine, im gonna do what you said and make a new project as a template
100 replies
CC#
Created by hdmark on 11/20/2024 in #help
Asp.net Core bin vs bin/debug
there is a global asax
100 replies
CC#
Created by hdmark on 11/20/2024 in #help
Asp.net Core bin vs bin/debug
.net framework 4.6.1 apparently
100 replies
CC#
Created by hdmark on 11/20/2024 in #help
Asp.net Core bin vs bin/debug
i thought it was. i could have sworn i saw core thorughout the project
100 replies
CC#
Created by hdmark on 11/20/2024 in #help
Asp.net Core bin vs bin/debug
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.props" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" />
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.props" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" />
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
100 replies