Sybaris

Results 35 comments of Sybaris

Hi, I found the solution for my part : I change this line of code ` .SetOperatingAssembly(typeof(Person).Assembly)` by ` .SetOperatingAssembly(typeof(Program).Assembly)` And it's solves my problem. Regards Sybaris

Hi, So currently, I do this : ``` public static string ReadEmbeddedResource(Assembly assembly, string resourceName) { using (Stream resourceStream = assembly.GetManifestResourceStream(resourceName)) using (StreamReader reader = new StreamReader(resourceStream)) { return reader.ReadToEnd();...

Thanks for answering me. For information, I abandoned this project, and instead I use RazorLight which is more responsive in terms of answering questions, and the code seems more stable...

> Looking at adding this in to the next release. What would be best for null values - an empty string or the word NULL? Good question :-) Today, when...

Hi, Any news ? Regards Sybaris

Here my workaraound : ``` internal class Program { private static Assembly GetLoadedAssembly(string assemblyName) { var loadedAssemblies = AppDomain.CurrentDomain.GetAssemblies(); return loadedAssemblies.FirstOrDefault(a => a.GetName().Name == assemblyName); } private static IEnumerable InvokeFromEarlyBoundEntities(Assembly...

Hi, No, I have just clone from VS2022. I am on windows, and I have powershell already installed. => So on the build section, for Windows, I have nothing to...

Hi I have exactly the same problem since 9.6.0.0 version. **To Reproduce** Launch 1st XrmToolbox. Launch Sql4Cds and connect to a dataverse. Launch 2nd XrmToolbox. Launch Sql4Cds and try to...

> Happening to me, too. And Object Explorer pane is also missing. Is there a hotkey or setting to display it? Try this : ![Image](https://github.com/user-attachments/assets/8b559e5c-9e6f-4302-9d7a-95f0537d77f3)

Note that with the following code (after creating Sql4CdsConnection), I do not have the issue : `UseTDSEndpoint = false;`