I have a problem with the designer. It gives me a XmlException when I open a certain projectfile. This is caused by a table valued function call.
Steps to reproduce from scratch:
Create a table valued function in a new SQL database (I've used 2012):
CREATE FUNCTION test
(
@param1 int,
@param2 int
)
RETURNS @result TABLE(ID int, Item nvarchar(20), RowNum int)
AS
BEGIN
RETURN
END
Create a new LLBLGen Pro Runtime project.
Add relational model from the just created database.
Right click the table valued function in the catalog explorer and click on Create call definitions....
Add the call to the project with the default settings.
Save and close the project.
Reopen the project.