CodeFirstFunctions icon indicating copy to clipboard operation
CodeFirstFunctions copied to clipboard

Store Functions for EntityFramework CodeFirst

Results 8 CodeFirstFunctions issues
Sort by recently updated
recently updated
newest added

HI, I have an issue with full-text. The sql script I execute on the server is select * from dbo.ufn_search('(ISABOUT("mysearch") OR "mysearch")') My function in the context is ``` [DbFunction("WordBankContext",...

I have a very simple example to demonstrate this issue. I have a Table Valued Function: CREATE FUNCTION [dbo].[TestTVF] ( @param1 varchar(max) ) RETURNS TABLE AS RETURN ( SELECT 1...

It looks like it's not possible to declare a function in a base `DbContext` because the `namespaceName` passed to `[DbFunction("DbContextClassName", "FunctionName"]` needs to be the name of the subclass. If...

If a model has a property that is a complex type, [this line](https://github.com/moozzyk/CodeFirstFunctions/blob/master/CodeFirstStoreFunctions/StoreFunctionBuilder.cs#L155) throws an invalid cast exception. I tried to modify the code to flatten out the first layer...

Ported from https://codefirstfunctions.codeplex.com/workitem/15 REPORTED ON: REPORTED BY: Oct 13, 2015 at 3:25 AM samunro The ColumnAttribute allows for property names that do not match the columns in the database to...

Ported from: https://codefirstfunctions.codeplex.com/workitem/6 REPORTED ON: REPORTED BY: Jul 21, 2014 at 9:26 PM moozzyk In EF 6.1.1 it is possible to define custom mappings between columns returned by a store...

Ported from: https://codefirstfunctions.codeplex.com/workitem/8 REPORTED ON: REPORTED BY: Nov 5, 2014 at 8:02 AM moozzyk As per the comment to http://blog.3d-logic.com/2014/10/18/the-final-version-of-the-store-functions-for-entityframework-6-1-1-code-first-convention-released/ : Is it also possible to support IEnumerable as an...

See discussion here: https://codefirstfunctions.codeplex.com/discussions/650751 (Ported from: https://codefirstfunctions.codeplex.com/workitem/16)