© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
C#C
C#•4y ago•
9 replies
Alerin

✅ Can I create a Liststring in mssql ef core?

my models:
public class Template
{
    public int Id { get; set; }
    public string Title { get; set; } = string.Empty; // Nazwa szablonu
    public string Content { get; set; } = string.Empty;
    public string Description { get; set; } = string.Empty;
    public List<string> HashTags{ get; set; } = new();
}
public class Template
{
    public int Id { get; set; }
    public string Title { get; set; } = string.Empty; // Nazwa szablonu
    public string Content { get; set; } = string.Empty;
    public string Description { get; set; } = string.Empty;
    public List<string> HashTags{ get; set; } = new();
}

Can I save data like this without creating a new table? This is a template, it will really be used little and I don't care about performance.
C# banner
C#Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,871Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

EF Core Razor Pages and an MSSQL View
C#CC# / help
4y ago
✅ In Ef Core I can't update-database
C#CC# / help
6mo ago
EF Core
C#CC# / help
2y ago
EF-Core unable to create migration
C#CC# / help
2y ago