sql-variant Questions
4
I have a table-valued parameter in SQL Server 2012 defined as:
CREATE TYPE [dbo].[TVP] AS TABLE (
[Id] [int] NOT NULL,
[FieldName] [nvarchar](100) NOT NULL,
[Value] [sql_variant] NOT NULL
)
I...
Arianna asked 3/1, 2013 at 22:30
1
Solved
It looks like support has recently been added to Entity Framework Core in .NET Core 2.1 (preview) to allow the mapping of SQL_VARIANT columns (https://github.com/aspnet/EntityFrameworkCore/issues/7...
Yorktown asked 6/4, 2018 at 23:15
1
Solved
It's typical for a Relational Database Management System to use a specific variant of SQL. For example, SQL Server uses Transact-SQL aka T-SQL.
I understand MariaDB is based on MySQL (the RDBMS), a...
Hosea asked 3/11, 2017 at 19:40
4
I currently have a database table setup as follows (EAV - business reasons are valid):
Id - int (PK)
Key - unique, varchar(15)
Value - varchar(1000)
This allows me to add in mixed values into m...
Dishwater asked 11/12, 2012 at 15:32
1
© 2022 - 2025 — McMap. All rights reserved.