EntityFramework.Functions
EntityFramework.Functions copied to clipboard
EntityFramework.Functions library implements Entity Framework code first support for stored procedures (with single result type, multiple result types, output parameter), table-valued functions (retur...
I've made a simple project to test ModelDefinedFunctions and I can't get it to work... I get an exception: > MetadataException: Schema specified is not valid. Errors: > (0,0) :...
The issue is rare, but still possible. Migrations fail with message that there are pending changes when in fact everything is OK. The following code is problematic: ```csharp public static...
Different assemblies are built for different target versions, but in the end the same 4.8 assembly is used for all TFVs when packaging for nuget: https://github.com/Dixin/EntityFramework.Functions/blob/master/Tools/EntityFramework.Functions.nuspec#L56
Hi, I am trying to use this library for importing the `STRING_SPLIT` function and having it called inside a LINQ query, but it's not working I have ```csharp [DbConfigurationType(typeof(DbContextConfiguration))] public...
Stored Procedure With Both Resultset and Output parameter is not Working.
EFCore
Any plans to make this work with Entity Framework Core?
Hello. I am not able to create Model Defined Function if Entity Type uses Enum inside. How I can fix this? Thanks.
Hi, Entity Framework v6.3.0 has support for aggregate functions with more then one argument. Could Function.DbModel.cs be updated to support that?
If I'm mapping a stored proc with one output param and one input param, exceptions are thrown 👍 **_SqlException: The formal parameter "@QueueId" was not declared as an OUTPUT parameter,...